c语音餐厅点单
时间: 2024-01-22 21:18:40 浏览: 65
好的,您需要一个简单的C语言餐厅点单程序是吗?我可以帮您实现这个程序。以下是一个简单的示例程序,您可以根据自己的需求进行修改和改进。
```c
#include <stdio.h>
#include <stdlib.h>
int main()
{
int choice;
float bill = 0.0;
printf("\n\n\t\tWelcome to our restaurant!");
printf("\n\n\t\t1. Burger - $4.00");
printf("\n\t\t2. Sandwich - $3.50");
printf("\n\t\t3. French Fries - $2.50");
printf("\n\t\t4. Soft Drink - $1.50");
printf("\n\t\t5. Exit");
printf("\n\n\t\tWhat would you like to order? ");
do {
printf("\n\n\t\tEnter your choice: ");
scanf("%d", &choice);
switch(choice) {
case 1:
bill += 4.0;
break;
case 2:
bill += 3.5;
break;
case 3:
bill += 2.5;
break;
case 4:
bill += 1.5;
break;
case 5:
printf("\n\n\t\tThank you for your visit!");
exit(0);
default:
printf("\n\n\t\tInvalid choice! Please enter a valid one.");
}
printf("\n\n\t\tYour total bill so far is: $%.2f", bill);
} while(choice != 5);
return 0;
}
```
这个程序允许用户选择食品和饮料,计算账单,并在用户退出时结束程序。您可以根据自己的需求进行更改,例如添加更多的选项,更改价格或显示更多信息等等。
阅读全文