Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
3496 朱秦千惠 二维数组输出(1) C++ 通过 100 0 MS 256 KB 292 2019-12-19 19:26:47

Tests(3/3):


#include<iostream> using namespace std; int main(){ int a,b[11][11],c=1; cin>>a; for(int i=0;i<=a-1;i++){ for(int j=0;j<=a-1;j++){ b[i][j]=c; c++; } } for(int i=0;i<=a-1;i++){ for(int j=0;j<=a-1;j++){ cout<<b[i][j]<<" "; } cout<<endl; } return 0; }


测评信息: