easy
2024-03-10 16:48:20
发布于:广东
35阅读
0回复
0点赞
这道题其实只要掌握一个实用的代码:
int x,cnt=0;
cin>>x;
while(x>0){
cnt+=1;
x/=10;
}
再加上一些零零散散的东西
如
#include<iostream>
using namespace std;
int main(){
}
cout<<cnt;
成品
#include<iostream>
using namespace std;
int main(){
int x,cnt=0;
cin>>x;
while(x>0){
cnt+=1;
x/=10;
}
cout<<cnt;
}
欢迎加入团队:进步的蜗牛
欢迎在我的题单做题
https://www.acgo.cn/application/1763167636914827264
这里空空如也
有帮助,赞一个