#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?什么是正确的方法呢?