| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155293 | 李折曦 | 矩阵转置 | C++ | Accepted | 7 MS | 312 KB | 322 | 2026-06-06 15:06:59 |
#include <bits/stdc++.h> using namespace std; int main (){ int a[101][101]; int n,m; cin>>n>>m; for(int i=1;i<=n;i++){//hang for(int j=1;j<=m;j++){//lie cin>>a[i][j]; } } for(int i=1;i<=m;i++){//lie for(int j=1;j<=n;j++){//han cout<<a[j][i]<<" "; } cout<<endl; } return 0; }