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.

46 lines
776 B

6 years ago
#include"main.h"
int range,kind,voice,dif;
date dates[4][11];
int main(void){
char choice;
srand(time(NULL));
load(1);
do{
printf("\n\n\n\n\n\n\t\t\t<EFBFBD><EFBFBD>ӭʹ<EFBFBD><EFBFBD>Сѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n\n");
printf("\t\t\t1.<2E><>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>\n\n");
printf("\t\t\t2.<2E><><EFBFBD><EFBFBD>\n\n");
printf("\t\t\t3.<2E><><EFBFBD><EFBFBD>\n\n");
printf("\t\t\t4.<2E>˳<EFBFBD>\n\n");
printf("\t\t\t(<28><><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1>ǰ<EFBFBD><C7B0><EFBFBD>ֽ<EFBFBD><D6BD><EFBFBD><EFBFBD><EFBFBD>Ӧ<EFBFBD>IJ<EFBFBD><C4B2><EFBFBD>)\n\n\t\t\t");
do{ //ѡ<><D1A1><EFBFBD>ж<EFBFBD>
choice=getch(); if(voice==1) printf("\a");
6 years ago
6 years ago
if(choice>='1'&&choice<='4'){
system("cls");
if(choice=='1') test(1);
if(choice=='2') record(1);
if(choice=='3') setting(1);
break;
}else printf("\n\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n\n\t\t\t");
}while(choice!='4');
}while(choice!='4');
save(1);
return 0;
}