太简单了
2024-11-12 18:04:33
发布于:浙江
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int x;
cin>>x;
while(x!=0){
cout<<x%10<<" ";
x=x/10;
}
return 0;
}
全部评论 1
忒简单了吧
昨天 来自 浙江
0
2024-11-12 18:04:33
发布于:浙江
#include<bits/stdc++.h>
using namespace std;
int main(){
int x;
cin>>x;
while(x!=0){
cout<<x%10<<" ";
x=x/10;
}
return 0;
}
有帮助,赞一个