6 条题解
-
0
#include <iostream>//hetao3097453 using namespace std; int main() { int n; cin >> n; int a = n % 10; int b = n % 100 / 10; int c = n % 1000 / 100; int d = n % 10000 / 1000; int e = n % 100000 / 10000; int f = n % 1000000 / 100000; cout << f << endl << e << endl << d << endl << c << endl << b << endl << a; return 0; }
- 1
信息
- ID
- 608
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 2
- 标签
- 递交数
- 207
- 已通过
- 135
- 上传者