酷代码 AI
菜单
全部AI  /  热门  /  AI写代码神器
服务商

写出enter your name. alice hello alice, do you want to repeat this program? yes enter your name. bob hello bob, do you want to repeat this program? yes enter your name. charlie hello charlie, do you want to repeat this program? no goodbye, charlie! 的c++代码

以下是一个简单的 C++ 代码示例,实现了你描述的功能: ```cpp #include <iostream> #include <string> int main() { std::string name; std::cout << "enter your name." << std::endl; std::cin >> name; std::cout << "hello " << name << ", do you want to repeat this program?" << std::endl; std::string answer; std::cin >> answer; while (answer == "yes") { std::cout << "enter your name." << std::endl; std::cin >> name; std::cout << "hello " << name << ", do you want to repeat this program?" << std::endl; std::cin >> answer; } if (answer == "no") { std::cout << "goodbye, " << name << "!" << std::endl; } return 0; } ``` 这段代码首先提示用户输入名字,然后询问是否重复程序。如果回答是"yes",则再次执行输入名字和询问的过程。如果回答是"no",则输出再见的消息。 [2024-10-22 08:36:28 | AI写代码神器 | 267点数解答]

相关提问