| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 363362 | 李铭泽 | 【C4-8】二维数组输入输出 | C++ | 解答错误 | 0 | 2 MS | 248 KB | 290 | 2025-11-23 21:39:39 |
#include<bits/stdc++.h> using namespace std; int n,m,a[12][12],l,r,s,c; int main(){ cin>>n,m; 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; }