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
456 B
20 lines
456 B
#include"main.h"
|
|
|
|
record(int v){
|
|
|
|
if(range==0) printf("\n\t\t\t\t100以内");
|
|
else printf("\n\t\t\t\t1000以内");
|
|
if(kind==0) printf("加减法\n\n");
|
|
else printf("乘除法\n\n");
|
|
|
|
printf("\t\t\t排名 名字 成绩 时间\n\n");
|
|
|
|
for(int i=0;i<10;i++){
|
|
printf("\t\t\t%2d. %-5s %3d分 %5.2f秒\n\n",i+1,dates[dif][i].name,dates[dif][i].scores,dates[dif][i].time);
|
|
}
|
|
|
|
system("pause"); if(voice==1) printf("\a");
|
|
system("cls");
|
|
|
|
}
|