摘要: 不使用 vector 的写法 点击查看代码 #include<iostream> #include<cmath> using namespace std; // 计算 n 有多少位 int dgt(int n) { int res = 0; while (n) { res ++; n /= 10; 阅读全文
posted @ 2022-05-25 09:40 wKingYu 阅读(34) 评论(0) 推荐(0)