为什么是条件分支?
2024-08-19 16:55:02
发布于:云南
3阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int n; cin >> n;
while(n){
int yu = n % 10;
n /= 10;
cout << yu << " ";
}
return 0;
}
这里空空如也
2024-08-19 16:55:02
发布于:云南
#include<bits/stdc++.h>
using namespace std;
int main(){
int n; cin >> n;
while(n){
int yu = n % 10;
n /= 10;
cout << yu << " ";
}
return 0;
}
这里空空如也
提交答案之后,这里将显示提交结果~
有帮助,赞一个