Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
333897 | 小林老师 | 【C3-6】多个矩形Ⅱ | C++ | 通过 | 100 | 78 MS | 244 KB | 338 | 2025-07-16 21:48:48 |
#include <iostream> using namespace std; int main() { char s = 'A'; int n; cin >> n; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { for (int k = 0; k < n; k++) { cout << s; } cout << endl; } s++; } return 0; }