while秒了
2024-08-22 11:59:16
发布于:浙江
1阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,cnt = 0;//n为输入,cnt记位数
cin >> n;//输入n
while(n){//循环到n == 0
cnt++;//计数器加一
n /= 10;//舍弃最后一位
}
cout << cnt;//输出
//不写return 0 好习惯
}
这里空空如也
有帮助,赞一个