| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 363360 | 李铭泽 | 【C4-8】二维数组输入输出 | C++ | 解答错误 | 0 | 2 MS | 240 KB | 277 | 2025-11-23 21:33:30 |
#include<bits/stdc++.h> using namespace std; int n,m,a[6][85],l,r,s,c; int main(){ for(int i=1;i<=4;i++){ for(int j=1;j<=3;j++){ a[i][j]=++c; } } for(int i=1;i<=4;i++){ for(int j=1;j<=3;j++){ cout<<a[i][j]<<" "; } cout<<endl; } return 0; }