题目内容
输入一个整数,编写程序,输入数字1-7中的任意数字,输出对应的星期,如:输入1,输出“星期一”,输入2,输出“星期二”,以此类推。#includedint main(){int weekday;scanf("%d",&weekday);switch(______){case 1:printf("星期一\n");break;case 2:___________________case 3:printf("星期三\n");break;case 4:printf("星期四\n");break;case 5:printf("星期五\n");break;case 6:printf("星期六\n");break;case 7:printf("星期日\n");break;default:printf("输入错误\n");}return 0;}
查看答案
搜索结果不匹配?点我反馈