8 条题解
-
2
#include <iostream> using namespace std; int main() { for(int i = 2;i <= 8;i+=2) { 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; } 没人写题解?
-
0
#include <iostream> using namespace std; int main() { for(int i = 2;i <= 8;i+=2) { 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
- 389
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 3
- 标签
- 递交数
- 142
- 已通过
- 80
- 上传者