结构体数组定义与使用


struct student{
    int num;
    char name[20];
    ...;
}

结构体的定义

 

student stud[4];

数组变量的定义

 

void input (student &stud){
    cout<<"请输入xxx:";
    cin>>stud . num;
    cout<<".....";
    cin>>....;
}

void output ( student &stud){
    cout<<".....";
}

for ( int i = 0 ; i<=3 ; i++){
    input (stud[i];
}

for(int i = 0 ; i<=3 ; i++){
    output(stud[i]);
}

结构体数组的使用

 


免责声明!

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



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