Question: C++ Please do not change the rest of the code except for the part that says /* Your code goes here */ **Do not copy
C++
Please do not change the rest of the code except for the part that says /* Your code goes here */
**Do not copy from other chegg answers because it's not possible since this question is not on Chegg**

Read in a 2-character string from input into variable userCode. Declare a boolean variable containsUppercase and set. containsUppercase to true if userCode contains an uppercase letter. Otherwise, set containsUppercase to false. Ex: If the input is M6, then containsUppercase is assigned with true, so the output is: Passcode accepted Ex: If the input is 4j, then containsUppercase is assigned with false, so the output is: Passcode not accepted Note: Use getline(cin, userCode) to read the entire line from input into userCode
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
