c++程序—结构体数组

#include<iostream>
using namespace std;
#include<string>
//结构体数组

struct student 
{
    string name;
    int age;
    float score;
};

int main()
{
    struct student studentArr[3] =
    {
        {"张三",18,97.5},
        {"李四",19,60},
        {"王五",17,78},
    };

    studentArr[1].score = 85.5;

    for (int i = 0; i < 3; i++) 
    {
        cout << "姓名: " << studentArr[i].name <<"  "
             << "年龄: " << studentArr[i].age <<"  "
             << "分数: " << studentArr[i].score<<"  " << endl;
    }
    system("pause");
    return 0;

}

猜你喜欢

转载自www.cnblogs.com/hackerteen/p/12459665.html