用c语言编一个程序 要求1:输入一个年份,输出是在屏幕上显示该年的日历...答:printf("\n4 Exit\n"); //选择退出程序 scanf("%d",&option);switch(option) //用来选择执行 { case 1:while(1){ printf("\nPlease input the year,month and day(XXXX,XX,XX):"); //提示输入 scanf("%d,%d,%d,%c",&year,&month,&day); //读入数据 da=DaySearch(year,month,...