在C ++中使用用户名/密码检查程序时出错

时间:2015-05-24 06:32:51

标签: c++ password-checker

我目前正在尝试学习一些基本的C ++编程,并决定让自己成为一个基本的3次尝试用户名和密码检查器,以练习我读过的一些内容。问题是当我运行程序并首先输入错误的用户名和密码时,如果在第二次或第三次尝试时输入,程序将不再识别正确的用户名和密码。我已经看了很长一段时间了,似乎无法让它发挥作用。 我甚至包括一个当前注释掉的行,以确保程序正在读取正确的输入,它是。

#include <iostream>
#include <string>

using namespace std;

int main()
{
    int attempts=0;
    string username, password;
    while (attempts < 3)
    {
        cout<<"\nPlease enter your username and password seperated by a space.\n";
        getline( cin, username, ' ');
        cin>>password;
        if (username == "Ryan" && password == "pass")
        {
            cout<<"\nYou have been granted access.";
            return 0;
            cin.get();
        }
        else
        {
            attempts++;
            //cout<<username <<" " <<password << "\n";
            cout<<"Incorrect username or password, try again.";
            cout<<"\nAttempts remaining: "<<3-attempts <<"\n";
        }
    }
    cout<<"\nOut of attempts, access denied.";
    cin.get();

}

非常感谢任何帮助或批评。

1 个答案:

答案 0 :(得分:2)

由于getline

,您的用户名在第一次尝试后包含换行符'\ n'

更改您的cin使用情况
getline( cin, username, ' ');
cin>>password;

cin >> username;
cin >> password;

解决您的问题