从键盘输入一个整数,当输入1~7时,显示下面对应的英文星期名称和缩写.

2024-11-26 01:33:15
推荐回答(1个)
回答1:

#include 
char *txt[] = { "Mon.","Tue.","Wed.","Thu.","Fri.","Sat.","Sun." };
int main()
{
int w;
scanf("%d", &w);
while (w != 0)
{
if (1 <= w && w <= 7)
printf("%s\n", txt[w - 1]);
else
printf("Error!\n");
scanf("%d", &w);
}
return 0;
}