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.

34 lines
474 B

#include"seatung.h"
int main()
{
int select;
int loop=1;
do
{
select=menu();
switch(select)
{
case 1:
printYearCalendar();
break;
case 2:
printMonthCalendar();
break;
case 3:
third();
break;
case 4:
memo();
break;
case 0:
printf("感谢使用!\n");
loop=0;
break;
default:
printf("无对应选项,请重新输入\n");
system("pause");
}
}while(loop!=0);
return 0;
}