| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 139603 | zlx | [在线测评解答教程] A+B Problem | C++ | Wrong Answer | 1 MS | 260 KB | 210 | 2025-12-08 16:25:33 |
#include<bits/stdc++.h> using namespace std; int main(){ int b[2][3]={{1,2,3},{4,5,6}}; for(int i=0;i<2;i++){ for(int j=0;j<3;j++){ cout<<b[i][j]<<" "; cout<<endl; } } return 0; }
------Input------
87 93
------Answer-----
180
------Your output-----
1 2 3 4 5 6