Question: #include using namespace std; int main ( ) { string passwordStr; bool passwordValid; getline ( cin , passwordStr ) ; for ( int i
#include
using namespace std;
int main
string passwordStr;
bool passwordValid;
getlinecin passwordStr;
forint i ; i passwordStr.length; i
ifcharisdigitpasswordStrchari
digitsCount;
if passwordValid
cout "Valid" endl;
else
cout "Invalid" endl;
return ;
how can i get this to Use passwordValid to output "Valid" if passwordStr contains no more than digits and passwordStr's length is less than or equal to Otherwise, output "Invalid".
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
