| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 363176 | 耿家钧 | 【C4-8】二维数组输入输出 | C++ | 通过 | 100 | 2 MS | 244 KB | 257 | 2025-11-23 14:14:22 |
#include<bits/stdc++.h> using namespace std; int a[5][4]; int main(){ for(int i=1;i<=4;i++){ for(int j=1;j<=3;j++) cin>>a[i][j]; } for(int i=1;i<=4;i++){ for(int j=1;j<=3;j++) cout<<a[i][j]<<" "; cout<<endl; } return 0; }