美食店编程代码怎么写的

时间:2025-01-26 23:05:11 网络游戏

美食店的编程代码可以根据具体需求选择不同的编程语言来实现,例如Python、C++、Java等。下面我将分别用Python和C++提供一个简单的美食店点餐系统的代码示例。

Python示例

```python

定义菜单和价格

menu = {

"汉堡": 15,

"薯条": 10,

"可乐": 5,

"冰淇淋": 8

}

初始化订单

order = {}

展示菜单

print("欢迎光临!这是我们的菜单:")

for item, price in menu.items():

print(f"{item} - {price}")

用户点餐

while True:

item = input("请输入您要点的菜品(输入'完成'结束点餐): ")

if item == "完成":

break

if item in menu:

quantity = int(input("请输入您需要的数量: "))

order[item] = quantity

else:

print("抱歉,我们没有这道菜品。")

展示订单

print("您的订单如下:")

for item, quantity in order.items():

price = menu[item] * quantity

print(f"{item} x {quantity} - {price}")

计算总价

total_price = sum(menu[item] * quantity for item, quantity in order.items())

print(f"总价: {total_price}")

```

C++示例

```cpp

include

include

include

include

using namespace std;

struct MenuItem {

string name;

double price;

string category;

};

class Menu {

public:

void addItem(const string& name, double price, const string& category) {

items[name] = MenuItem{name, price, category};

}

void removeItem(const string& name) {

items.erase(name);

}

vector> getAllItems() const {

vector> itemsList;

for (const auto& pair : items) {

itemsList.emplace_back(pair.first, pair.second.price);

}

return itemsList;

}

private:

map items;

};

int main() {

Menu menu;

menu.addItem("汉堡", 15.0, "热菜");

menu.addItem("薯条", 10.0, "热菜");

menu.addItem("可乐", 5.0, "饮料");

menu.addItem("冰淇淋", 8.0, "甜品");

cout << "欢迎光临!这是我们的菜单:" << endl;

for (const auto& item : menu.getAllItems()) {

cout << item.first << " - " << item.second << endl;

}

string input;

double total_price = 0.0;

while (true) {

cout << "请输入您要点的菜品(输入'完成'结束点餐): ";

getline(cin, input);

if (input == "完成") {

break;

}

if (menu.getAllItems().find(input) != menu.getAllItems().end()) {

int quantity;

cout << "请输入您需要的数量: ";

cin >> quantity;

total_price += menu.getAllItems().at(input).price * quantity;

cout << "已添加: " << input << " x " << quantity << " - " << menu.getAllItems().at(input).price * quantity << endl;

} else {

cout << "抱歉,我们没有这道菜品。" << endl;

}

}

cout << "您的订单如下:" << endl;

for (const auto& item : menu.getAllItems()) {

cout << item.first << " x " << order[item.first] << " - " << item.second * order[item.first] << endl;

}

cout << "总价: " << total_price << endl;

return 0;

}

```

这两个示例分别展示了如何使用Python和C++实现一个简单的美食店点餐系统。你可以根据自己的需求选择合适的编程语言,并根据具体功能需求进行扩展和优化。