Question: Declare a Boolean variable named goodPassword. Use goodPassword to output Valid if codeStr contains fewer than 5 digits and codeStr's length is greater than 6,

Declare a Boolean variable named goodPassword. Use goodPassword to output "Valid" if codeStr contains fewer than 5 digits and codeStr's length is greater than 6, and "Invalid" otherwise.

Ex: If the input is 8V24c7J, then the output is:

Valid

Ex: If the input is wL6Clj, then the output is:

Invalid

Note: isdigit() returns true if a character is a digit, and false otherwise. Ex: isdigit('8') returns true. isdigit('a') false.

#include using namespace std;

int main() { string codeStr;

cin >> codeStr; if (goodPassword) { cout << "Valid" << endl; } else { cout << "Invalid" << endl; } return 0; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!