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;

}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM