Question: In c + + , Complete the following code contained in a function to write an input validation loop that asks the user to enter

In c++,
Complete the following code contained in a function to write an input validation loop that asks the user to enter Y,y,N, or n
---------------------------------------------
char get_input(){
char v;
cout << "Enter Y, y, N, or n:";
cin >> v;
While( v !=Y Blank 1 v !=y Blank 2 v !=N Blank 3 v !=n){
cout << "Enter Y, y, N, or n:";
cin >> v;
}
return Blank 4;
}

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 Programming Questions!