Question: Who knows about this subject of C++ programming codes? Write code using a nested conditional execution statement to: Create a character variable and assign it

Write code using a nested conditional execution statement to: Create a character variable and assign it any value found on the keyboard Print out the character variable. . Check to see if the character is an uppercase letter, or lower case character o If it is alphabetic, then check to see if it is a vowel - don't forget to check both upper and lower case vowels. o If it is a vowel then output "?? is a vowel" - where ?? is the character that was input o If it is NOT a vowel then output "?? is NOT a vowel" - where ?? is the character that was input If it is NOT an alphabetic character check to see if it is a numeric character o If it is then output "?? character is a digit" here ?? is the character that was input o If it is not then output "?? is not an alphabetic or numerical character" where ?? is the character that was input Here are some sample output: (your code will only print a single output) This character is: D "D" is a consonant Enter an alphabet: e "e" is a vowel Enter an alphabet: 8 "8" is a digit Enter an alphabet: % "9" is a not an alphabetic or numerical ch
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
