-
个人简介
在线销售陈杰... #include #include #include #include #include using namespace std; int main(){ int a,b; cin>>a>>b; int x[105][105]; for(int i=1;i<=a;i++){ for(int j=1;j<=b;j++)cin>>x[i][j]; } for(int i=1;i<=a;i++){ for(int j=1;j<=b;j++)cout<<x[i][j]<<' '; cout<<endl; } return 0; }
2.#include<bits/stdc++.h> using namespace std; int a[100][100],b[100][100],n,m; int main(){ 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; }
3.#include #include using namespace std; int main(){ int arr[5][5]; int n,m; for(int i=0;i<5;i++){ for(int j=0;j<5;j++){ cin>>arr[i][j]; } }
cin>>n>>m; n--; m--; for(int i=0;i<5;i++){ int temp = arr[n][i]; arr[n][i] = arr[m][i]; arr[m][i] = temp; } for(int i=0;i<5;i++){ for(int j=0;j<5;j++){ cout<<arr[i][j]<<" "; } cout<<endl; } return 0; }
-
通过的题目
-
最近活动
This person is lazy and didn't join any contests or homework.
题目标签
- 初窥门径
- 52
- 顺序结构
- 26
- 略有小成
- 18
- 循环结构
- 17
- 分支结构
- 12
- 二维数组
- 8
- 字符串
- 6
- 循环嵌套
- 5
- 一维数组
- 5
- 驾轻就熟
- 3
- 其他
- 2
- 蓝桥杯
- 2
- 数论
- 2
- 位运算
- 1
- while循环
- 1
- for循环
- 1
- 模拟
- 1
- 二分查找
- 1