题解(点赞)腾渊之星2025-08-09 14:32:27发布于:上海0阅读0回复0点赞基础数位分离 #include <iostream> using namespace std; int main(){ int x; cin >> x; while(x){ cout << x % 10 << " "; x /= 10; } return 0; } 有帮助,赞一个去预览0/2000发布这里空空如也
有帮助,赞一个