7 条题解
-
0
`
#include <iostream> using namespace std; int main() { for(int i = 1;i <= 9;i++) { cout << i << "0" << i << endl; cout << i << "1" << i << endl; cout << i << "2" << i << endl; cout << i << "3" << i << endl; cout << i << "4" << i << endl; cout << i << "5" << i << endl; cout << i << "6" << i << endl; cout << i << "7" << i << endl; cout << i << "8" << i << endl; cout << i << "9" << i << endl; } return 0; }
- 1
信息
- ID
- 698
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 1
- 标签
- 递交数
- 101
- 已通过
- 76
- 上传者