#include <stdio.h>
typedef struct
{
char name[50];
char sex;
int id;
int score;
}studentInfo_t; /*学生信息的结构体*/
studentInfo_t studentInfo[50]=
{
{"wang","m",1,81},
{"zhang","f",2,79},
{0} /*初始化50个学生的信息,此处仅举2例,其余可补充完整*/
};
void main()
{
int i;
for(i=0;i<50;i++) /*轮询50个学生的信息*/
{
if(studentInfo[i].score>=80) /*成绩在80分以上时*/
{
/*打印输出对应的学号、成绩*/
printf("student ID:%d,score:%d\r\n",
studentInfo[i].id,studentInfo[i].score);
}
}
}
温馨提示:答案为网友推荐,仅供参考