Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
5640 | 朱嘉铭 | 分离整数的各个数位 | C++ | 通过 | 100 | 0 MS | 248 KB | 326 | 2020-08-14 16:37:06 |
#include <iostream> using namespace std; int main() { int n, index=0; cin >> n; while (n > 0){ if (index == 0) cout << n%10; else cout << " " << n%10; index++; n /= 10; } cout << endl; return 0; }