Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
361446 徐梓豪 【C4-8】二维数组输入输出 C++ 通过 100 2 MS 256 KB 266 2025-11-16 16:48:58

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int a[4][3]; int main(){ for(int i=0;i<=3;i++){ for(int j=0;j<=2;j++){ cin>>a[i][j]; } } for(int i=0;i<=3;i++){ for(int j=0;j<=2;j++){ cout<<a[i][j]<<" "; } cout<<endl; } return 0; }


测评信息: