题目 参考资料 思路要点 pow()幂运算 这题看题解说要考虑大数,应该挺难的,下次再看吧 代码 class Solution { public: vector<int> printNumbers(int n) { vector<int> ans; for(int i=1;i<pow(10,n);i++){ ans.push_back(i); } return ans; } };