1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
#include <iostream> // 输出流库 using namespace std; // 使用标准命名空间 // 课程:09.2 结构体数组 //1、定义结构体数组 struct student2 { string name;//名称 int age;//年龄 int score;//分数 }; int main() { //2、创建结构体数组 struct student2 atuArray[] = { {"张三",20,100}, {"李四",18,88}, {"王五",19,76} }; //3、给结构体数组中的元素赋值 atuArray[2].name = "赵六"; atuArray[2].age = 80; atuArray[2].score = 60; //4、遍历结构体数组 int len = sizeof(atuArray) / sizeof(atuArray[0]); for (int i = 0; i < len; i++) { cout << "姓名:" << atuArray[i].name << " 年龄:" << atuArray[i].age << " 成绩:" << atuArray[i].score << endl; } system("pause"); // 控制台暂停,等待下一步操作 return 0; // 结束返回值:0 } |
09.2 C++结构体数组
未经允许不得转载:Ai分享 » 09.2 C++结构体数组