I can\'t figure out how to use a \"default value\" when asking the user for input. I want the user to be able to just press Enter and get the default value. Consider the fol
if(!cin) cout << "No number was given."; else cout << "Number " << cin << " was given.";