read in a 3-character string from input into variable usercode. declare a boolean variable noalphas and set noalphas to true if usercode does not contain any alphabetic characters. otherwise, set noalphas to false. ex: if the input is %.-, then the output is: passcode accepted note: use getline(cin, usercode) to read the entire line from input into usercode.