有一学生成绩表,包括学号、姓名、3门课程成绩。请实现如下查找功能:输入一个学生的学号,输出该学生学号、姓名、4门课程成绩
#include#include #include typedef struct student{ char sno[13]; char name[22]; int a; int b; int c; }student; int find(char *s,student *stu,int t){ int i; for(i=0;i

有一学生成绩表,包括学号、姓名、3门课程成绩。请实现如下查找功能:输入一个学生的学号,输出该学生学号、姓名、4门课程成绩
#include#include #include typedef struct student{ char sno[13]; char name[22]; int a; int b; int c; }student; int find(char *s,student *stu,int t){ int i; for(i=0;i