基于Linux的学生管理系统
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#pragma warning(disable:4996)typedef struct Student
{char Num[30];char Name[10];int Age;float Score;
}stu;static int num;
int Num();//记录学生的数量
stu *Input(stu *pArr, int len);//…
2026/7/14 15:26:49