解题思路:
注意事项:
参考代码:
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=100;
int a[N][N],b[N][N]={0};
int main()
{
int n,m,sum=0;
cin>>n>>m;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
cin>>a[i][j];
}
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
cin>>b[i][j];
}
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
cout<<a[i][j]+b[i][j]<<' ';
cout<<"\n";
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1496 |
字符串比较 (C语言代码)浏览:770 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:522 |
明明的随机数 (C语言代码)浏览:965 |
众数问题 (C语言代码)浏览:659 |
Manchester- 求之N内的素数浏览:1510 |
母牛的故事 (C语言代码)浏览:511 |
Manchester- A+B for Input-Output Practice (V)浏览:1219 |
【金明的预算方案】 (C语言代码)浏览:1738 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:536 |