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.
20 lines
280 B
20 lines
280 B
6 years ago
|
#include<windows.h>
|
||
|
#include<string.h>
|
||
|
#include<stdlib.h>
|
||
|
#include<stdio.h>
|
||
|
#include<time.h>
|
||
|
|
||
|
typedef struct date{
|
||
|
char name[11];
|
||
|
int scores;
|
||
|
float time;
|
||
|
}date;
|
||
|
|
||
|
extern int range,kind,voice,dif;
|
||
|
extern date dates[4][11];
|
||
|
|
||
|
test(int v);
|
||
|
record(int v);
|
||
|
load(int v);
|
||
|
save(int v);
|