c语言课程设计 学生成绩管理系统
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
int shoudsave=0; /* */
struct student
{
char num[];/* 学号 */
char name[];
char class[];
char term[2];
int ygrade;
int cgrade;
int mgrade;
int egrade;
int totle;
int ave;
char neartime[];/* 最近更新时间 */
};
typedef struct node
{
struct student data;
struct node *next;
}Node,*Link;
void menu()
{
printf("
2024-12-28 23:50
2024-12-28 23:30
2024-12-28 23:02
2024-12-28 22:22
2024-12-28 21:56