Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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