如何在c ++中使用用户输入(CIN)声明一个字符串?

时间:2014-07-27 17:41:32

标签: c++

#include <iostream>
#include <string>
using namespace std;
int main()
{
    bool pass;
    string password();
    cout << "enter the password \n";
    cin >> password;
    system("pause");
    return 0;
}

这似乎不起作用,但为什么我不能定义字符串变量true cin?什么是正确的方法呢?

0 个答案:

没有答案