Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
336398 | 123456 | 【C3-T】打印长方形(二) | C++ | Accepted | 100 | 1 MS | 244 KB | 192 | 2025-07-28 09:05:56 |
#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++) cout<<char('A'+abs(i-j)); cout<<endl; } return 0; }