C ++。我的“你好世界”计划有什么问题?

时间:2013-12-22 07:57:35

标签: c++

有人可以告诉我这有什么问题。当我输入“你好吗”时,它不回复“我很好。”!请帮助!!!

#include <iostream>
#include <string>
using namespace std;

int main()
{
    string x;

    cout << "Write something.." << endl;
    cin >> x;

    if (x == "How are you?") {
        cout << "I am fine." << endl;
    }

    system("PAUSE");
}

6 个答案:

答案 0 :(得分:8)

使用std::getline获取行。 因为std::cin>>只会获得第一个字。

固定代码如下:

cout << "Write something.." << endl;
std::getline (std::cin,x);

if (x == "How are you?"){
    cout << "I am fine." << endl;
}

答案 1 :(得分:3)

首先,也许你应该输入你好吗?而不是你好吗让它像你想要在代码中检查的那样做出回应。啊,哈哈:)

另一件事,更严重的是,你应该使用std::getline()来获取输入而不是std::cin>>,因为后者只会得到第一个单词。

答案 2 :(得分:1)

程序没有认识到。如果您硬编码“你好吗?”进入你的程序,你最好打赌除非你的程序处于故障状态,否则它会“你好吗?”。您可以通过进行不区分大小写的比较(或将字符串转换为小写)或允许省略问号来缓解限制(但这不是问题,是吗?)

要读取整个字符串,您需要使用getline。否则,cin将仅提取第一个单词(直到空白)。

std::getline(std::cin, x);

答案 3 :(得分:1)

尝试这样的事情 -

$ cat hello.cc
#include <iostream>
#include <string>

int main() {
  using namespace std;
  string x;

  cout << "Write something.." << endl;
  getline(cin, x);
  if (x == "How are you?") {
    cout << "I am fine." << endl;
  }
}
$ g++ hello.cc
$ ./a.out 
Write something..
How are you?
I am fine.
$

答案 4 :(得分:0)

您只使用此语法阅读一个单词。

用于调试,打印您阅读的内容......

读取一行的正确方法是:

getline(cin, x);

我非常确定getline不会返回尾随的新行,但是如果它不起作用请检查。

答案 5 :(得分:0)

使用strcmp来比较字符串

strcmp()返回0;如果两个字符串相同

     returns 1;returns 1 if they are different

    int strcmp ( const char * str1, const char * str2 );