有注释,建议萌新(大佬也刑)有帮助点赞
2024-04-15 18:03:19
发布于:广东
5阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;//初始化
int t = n;//判断前导零依据
if(n == 0) cout<<0;//判断特殊情况(ps:否则输入0时输出空白)
else{
while(n!=0){//拆分数字
int x = n%10;
if(x == 0 and t == n){//判断前导零
n/=10;
t/=10;
continue;
}
n/=10;
cout<<x;//输出
}
}
return 0;
}
这里空空如也
有帮助,赞一个