My codes work, but they only execute std::cout and i can’t seem to input anything to the std::cins
Heres the code
int main() {
int password;
std::cout << “Please input the password first.:\n”;
std::cin >> password;
if (password == 123) {
std::cout << “Password correct! you are now being logged in.\n”;
}
else {
std::cout << “Incorrect password. You are now being relogged to the home menu.\n”;