用·c++编写,可以循环输入任意个字符串,输入*时结束循环
时间: 2024-02-13 08:06:32 浏览: 53
C++字符串输入
好的,以下是一个可以循环输入任意个字符串,输入*时结束循环的C++程序示例:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str;
while (true) {
cout << "Please enter a string (enter * to exit): ";
getline(cin, str);
if (str == "*") {
break;
}
cout << "You entered: " << str << endl;
}
return 0;
}
```
这个程序使用了一个`while`循环,不断提示用户输入字符串。当用户输入`*`时,循环会退出,程序结束。否则,程序会将用户输入的字符串打印出来。
阅读全文