Search code examples
loopsgoto

Issue with making a loop


#include "stdafx.h"
#include <iostream>
#include <cstdlib>
#include <string>
using namespace std;
string checkpass(string password1)
{
    string rightpass = "aimen";
    string errormsg2;
    if (password1 == rightpass)
    {
        errormsg2 = "Right";
    }
    else{errormsg2 = "No";}
    return errormsg2;
}
int main()
{
    string password;
    string errormsg;
    cout << "Type the password";
    loop:
    getline (cin,password);
    errormsg == checkpass(password);
    if (errormsg=="Right")
    {
        cout << "Admitted" << endl;
    }
    else {
        goto loop;
    }
    system("pause");
    return 0;
}

Console doesn't print the word "Admitted". It launches, but after my putting in the console words, repeatedly occur nothing.

I request your aid. Thank you.


Solution

  • You are comparing with errormsg == checkpass(password); when you should assign with one = symbol.