Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Read in a 2-character string from input into variable userCode. Declare a boolean variable isValid and set isValid to true if the following conditions are

Read in a 2-character string from input into variable userCode. Declare a boolean variable isValid and set isValid to true if the following conditions are met:

userCode does not contain two of the same character.

For alphabetic characters, userCode does not contain two of the same letter (regardless of case).

Otherwise, set isValid to false.

Ex: If the input is k#, then isValid is assigned with true, so the output is:

Passcode accepted

Ex: If the input is Jj, then isValid 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.

#include #include #include using namespace std;

int main() { string userCode; if (isValid) { cout << "Passcode accepted" << endl; } else { cout << "Passcode not accepted" << endl; }

return 0; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

How is a futures contract settled?

Answered: 1 week ago