/* Note:Your choice is C IDE */
#include "stdio.h"
#define FORMAT "%d\n%s\n%f\n%f\n%f\n"
struct student
{
int num;
char name;
float score[3];
};
void main()
{
void fprint(struct student);
struct student stud;
stud.num=1010;
strcpy(stud.name,"Li yang");
stud.score[0]=71.5;
stud.score[1]=90;
stud.score[2]=81.5;
fprint(stud);
}
void fprint(struct student stud)
{
printf("FORMAT,stud.num,stud.name,stud.score[0],stud.score[1],stud.score[2]");
printf("\n");
}
qq_蓝蓝的天堂_0
亚努人
半枯
相关分类