#include<iostream>
#include<string>
using namespace std;
//结构体数组
//1、定义结构体
struct student{
//姓名
string name;
//年龄
int age;
//分数
int score;
};
int main(){
//2、创建结构体数组
struct student stuarray[8]=
{
{"张三",18,100},
{"李四",28,80},
{"王五",38,66},
};
//3、结构体数组中的元素赋值
stuarray[2].name = "赵六";
stuarray[2].age = 80;
stuarray[2].score = 60;
//4、遍历结构体数组
for(int i = 0;i<3;i++){
cout<<" 姓名:"<<stuarray[i].name
<<" 年龄:"<<stuarray[i].age
<<" 分数:"<<stuarray[i].score<<endl;
}
return 0;
}
65 c++结构体数组
于 2023-11-18 16:29:03 首次发布