Day07笔记(HZ8月X01-1班)
2023-08-08 19:09:20
发布于:浙江
二维数组
- 定义
变量类型 + 数组名[行数][列数];
int a[5][5];
double b[5][5];
char c[5][5];
- 初始化
int a[5][5] = {1,2,3,4,5,6,7,8,9};
int a[5][5] = {{1,2,3},{4,5},{6}};
- 输入和输出
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
cin >> a[i][j];
}
}
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
cout << a[i][j] << " ";
}
cout << endl;
}
OI赛制
- 文件的使用
#include <bits/stdc++.h>
using namespace std;
//自定义函数...
//数组定义
int main(){
freopen("文件名.in", "r", stdin);
freopen("文件名.out", "w", stdout);
//--------- 程序开始
//程序内容
//
fclose(stdin);
fclode(stdout);
return 0;
}
这里空空如也
有帮助,赞一个