输入食材随机生成菜品c++
时间: 2023-07-05 09:03:37 浏览: 137
以下是一个简单的代码示例,可以输入多个食材,然后随机生成一道菜品:
```c++
#include <iostream>
#include <vector>
#include <string>
#include <cstdlib>
#include <ctime>
using namespace std;
vector<string> ingredients; // 存储食材的向量
void addIngredient() {
string ingredient;
cout << "请输入食材(输入 q 结束):" << endl;
while (cin >> ingredient && ingredient != "q") {
ingredients.push_back(ingredient);
cout << "已添加食材:" << ingredient << endl;
}
}
void generateDish() {
if (ingredients.empty()) {
cout << "请先添加食材!" << endl;
return;
}
srand(time(NULL));
int index = rand() % ingredients.size(); // 随机选择一个食材
string dish = ingredients[index] + "炒饭"; // 拼接成一道菜品
cout << "今天的特色菜是:" << dish << endl;
}
int main() {
addIngredient(); // 添加食材
generateDish(); // 随机生成菜品
return 0;
}
```
在这个示例中,我们使用了向量来存储输入的食材,然后使用 `srand` 和 `rand` 函数来生成随机数,从而随机选择一个食材,并将其拼接成一道菜品。
阅读全文