| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149005 | Kevin | 数组转置 | C++ | Accepted | 0 MS | 272 KB | 270 | 2026-03-06 16:29:21 |
#include<bits/stdc++.h> using namespace std; int main() { int a[5][5]; for(int i=1;i<=3;i++){ for(int j=1;j<=3;j++){ cin>>a[i][j]; } } for(int j=1;j<=3;j++){ for(int i=1;i<=3;i++){ cout<<a[i][j]<<" "; } cout<<endl; } return 0; }