用c语言实现这个代码
时间: 2024-09-26 15:05:57 浏览: 17
在C语言中,你可以使用switch-case结构来实现这样的功能。这里是一个简单的示例:
```c
#include <stdio.h>
int main() {
int input;
printf("请输入一个数字(1-4): ");
scanf("%d", &input); // 输入接收用户的数字
switch (input) {
case 1:
printf("输出: 110\n");
break;
case 2:
printf("输出: 119\n");
break;
case 3:
printf("输出: 120\n");
break;
case 4:
printf("输出: 122\n");
break;
default:
printf("输入错误,请输入1到4之间的数字。\n");
break;
}
return 0;
}
```
在这个程序中,用户输入的数字会被switch语句处理,根据输入的不同值打印相应的输出。如果输入不在预设的范围内,则会执行default分支,给出错误提示。
阅读全文