| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76791 | sh25_shenpy | 期末成绩-二维数组 | C++ | 解答错误 | 0 MS | 240 KB | 261 | 2025-12-19 19:11:16 |
#include <bits/stdc++.h> using namespace std; int a[2][3]; int main( ) { for(int i=0;i<3;++i){ cout<<a[1][i]+a[0][i]<<" "; } cout<<endl; for(int j=0;j<2;++j){ cout<<" "<<a[j][0]+a[j][1]+a[j][2]; } return 0; }