Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
37216 | 奚晨瑞 | Hello,World! | C++ | 输出超限 | 41 MS | 252 KB | 381 | 2024-01-19 16:16:47 |
#include<iostream> using namespace std; int a[101][101],b[101][101]; int main() { int n,m; cin>>n>>m; for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cin>>a[i][j]; } } for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cin>>b[i][j]; } } for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cout<<a[i][j]+b[i][j]<<" "; } cout<<endl; } return 0; }