结构体总分

#include 
#include 
#define N 3
struct student
{
 int number;
 char name[20];
 int math;
 int english;
 int chinese;
};
int main()
{   int i,s=0;
struct student a[N];
for(i=0;i

你可能感兴趣的:(笔记,c语言)