【题目】
输入数字 n,按顺序打印出从 1 到最大的 n 位十进制数。比如输入 3,则打印出 1、2、3 一直到最大的 3 位数 999。
示例 1:
输入: n = 1
输出: [1,2,3,4,5,6,7,8,9]
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/da-yin-cong-1dao-zui-da-de-nwei-shu-lcof
【思路】
直接写
【代码】
class Solution { public int[] printNumbers(int n) { int num = (int)Math.pow(10,n); int[] res = new int[num-1]; for(int i =0;i<num-1;i++){ res[i] = i+1; } return res; } }
标签:17,Offer,int,打印,da,num,位数 From: https://www.cnblogs.com/End1ess/p/17363943.html