You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
409 B

#include<stdio.h>
1 year ago
#include<stdlib.h>
#include<string.h>
1 year ago
typedef struct{
char *id;
char *class;
char *name;
double score1;
double score2;
double score3;
double score;
}Student;
typedef struct{
Student* student;
int nums;
}ss;
ss* init(int);
char mainMenu();
1 year ago
void getCom(ss*);
void Print(Student*);
void allPrint(ss*);
void input(ss*);
void cancel(ss*);
void Select(ss*);