提交时间:2025-07-24 15:29:02
运行 ID: 335951
#include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { char c = 'A' + abs(i - j) % 26; cout << c; } cout << endl; } return 0; }