C语言在屏幕上显示一张时间表,操作人员根据提示进行选择,程序根据输入的时间序号显示相应的问候信息。 程序运行示例1如下: ****TIME**** 1.morning 2.afternoon 3.night Enter your choice:2 Good afternoon 程序运行示例2如下: ****TIME**** 1.morning 2.afternoon 3.night Enter your choice:4 Selection wrong
时间: 2023-07-05 17:24:50 浏览: 131
1602显示汉字加时间(c语言程序)
下面是实现该功能的C语言代码:
```c
#include <stdio.h>
int main()
{
int choice;
printf("****TIME****\n");
printf("1.morning\n2.afternoon\n3.night\n");
printf("Enter your choice:");
scanf("%d", &choice);
switch (choice)
{
case 1:
printf("Good morning\n");
break;
case 2:
printf("Good afternoon\n");
break;
case 3:
printf("Good night\n");
break;
default:
printf("Selection wrong\n");
break;
}
return 0;
}
```
在该代码中,我们先显示时间表,然后从键盘读取操作员的选择。根据选择的序号,我们使用switch语句来显示相应的问候信息。最后,如果选择序号不正确,则输出提示信息“Selection wrong”。
阅读全文