字符串不与cin一起使用!

时间:2011-07-02 20:39:30

标签: c++

我的简单Hello World代码存在问题。

我无法cin我的名字。它没有定义运算符“>>”请有人帮忙吗。以下是我的代码。

  #include <iostream>
  using namespace std;

   int main()
   {
       int x;
       string name;
       cout<< "enter name:";
       cin>> name;
       cout<< "Hello "<< name <<endl;



       system("Pause");
    }

1 个答案:

答案 0 :(得分:6)

你必须这样做     #include <string>