| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 3164 | 孙灏洋 | 二维数组输出(1) | C++ | Compile Error | 0 | 0 MS | 0 KB | 145 | 2019-12-14 12:00:07 |
#include<iostream> int main(){ int a[11][11],n,t=1; cin>>n; for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ cout<<t<<" "; } } }