#include<stdio.h>
#include<stdlib.h>
#if(1)
typedef struct
{
int number;
char name;
float math;
float English;
float language;
}Stu;
void main()
{
Stu p,p1,p2;
printf("请输入学号,姓名,数学,英语,语文:\n");
scanf("%d%s%f,p.number,p.name,p.math);
system("pause");
}
#endif