我正在尝试编写一个 c++ 程序,提示输入几个 1 个字的输入,直到输入一个标记值。一旦输入了这个值(即“完成”),程序应该输出用户输入的所有单词。
我有一般格式;但是,这不会为字符串存储多个值......任何帮助都会很棒,谢谢。
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
string word;
word = "";
cout << "Enter the next bla bla now: " ;
cin >> word;
while ( word != "complete" )
{
cout << "The previous bla bla was: " << word << endl;
cout << "Enter the next bla bla now: ";
cin >> word;
}
cout << "Your phrase..bla bla bla is : " << word << endl;
return 0;
}