AC
2025-09-25 16:59:24
发布于:浙江
4阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, m;
cin >> n >> m;
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
cout << (char)('a' + j);
}
cout << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个