纯代码
2024-03-21 20:12:26
发布于:四川
28阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
cout << n % 10 << " " << n % 100 / 10 << " " << n / 100;
return 0;
}
这里空空如也
2024-03-21 20:12:26
发布于:四川
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
cout << n % 10 << " " << n % 100 / 10 << " " << n / 100;
return 0;
}
这里空空如也
提交答案之后,这里将显示提交结果~
有帮助,赞一个