用c++写一个点餐系统
时间: 2023-05-11 14:06:33 浏览: 239
基于C++的点餐系统设计
好的,以下是一个简单的点餐系统的 C 代码示例:
#include <stdio.h>
int main() {
int choice;
float total = 0.0;
printf("欢迎来到点餐系统!\n");
printf("1. 汉堡 ¥10.0\n");
printf("2. 可乐 ¥5.0\n");
printf("3. 薯条 ¥8.0\n");
printf("4. 退出\n");
do {
printf("请选择您要点的菜品(输入数字):");
scanf("%d", &choice);
switch (choice) {
case 1:
total += 10.0;
printf("您选择了汉堡,当前总价为¥%.1f\n", total);
break;
case 2:
total += 5.0;
printf("您选择了可乐,当前总价为¥%.1f\n", total);
break;
case 3:
total += 8.0;
printf("您选择了薯条,当前总价为¥%.1f\n", total);
break;
case 4:
printf("感谢您使用点餐系统,您的总价为¥%.1f\n", total);
break;
default:
printf("输入无效,请重新输入!\n");
break;
}
} while (choice != 4);
return 0;
}
阅读全文