Hi guys i'm trying to write code that requires the user to hit return twice to terminate the project and I can't figure it out. I think i am supposed to use some variation of
if(input == " "){
exit(1);
}
with a Boolean expression but I can't get it to work.