我的C ++程序存在问题。我重新格式化并显示用户输入控制台的单词。如果用户输入:您好我是bob。用户将bob输入控制台后按Enter键。我将重新格式化并以其新格式重新打印。问题是我不想在输入该控制台行上的所有单词之前显示更多输入的消息。我在当前循环中显示每个单词后的输入请求,或者根本不显示它。这取决于我是否包含提示。我需要对每个单词进行while循环处理并输出它并在最后一个单词后停止。什么是布尔参数?我包含了我的代码供参考。
int _tmain(int argc, _TCHAR* argv[])
{
int b;
string input;
string output ;
int check = 1;
while (check){
cout << "Enter in one or more words to be output in ROT13: " << endl;
cin >> input;
while(my issue is here){
const char *word = input.c_str();
for (int i = 0; i < input.length(); i++){
b = (int)word[i];
if (b > 96){
if (b >= 110){
b = b - 13;
}
else {
b = b + 13;
}
output += ((char)b);
}
else
{
if (b >= 78){
b = b - 13;
}
else {
b = b + 13;
}
output += ((char)b);
}
}
cout << output << endl;
output = "";
cin >> input;
}
check = 0;
}
return 0;
}
答案 0 :(得分:5)
您可以使用以下行替换整个while循环:
std::getline(std::cin, input); // where input is a std::string
然后在此行之后重新格式化。
答案 1 :(得分:1)
如果没有更多的输入行,cin函数将返回false。您可以执行以下操作直到输入结束,或者如果要重定向cin以从文件中读取,则可以执行以下操作。
int a;
while(cin >> a){
//Your loop body
}