Repair the following code to perform the actions defined in the comments. #inclu
ID: 3638769 • Letter: R
Question
Repair the following code to perform the actions defined in the comments.
#include <iostream>
#include <assert>
int main()
{
char letter;
// Prompt the user to enter a letter and then read the letter
cout << "Enter a letter: ";
cin >> letter;
// Use an assert statement to verify that the character entered is a letter
assert ( 'A' < = letter < = 'Z' or 'a' < = letter < = 'z' );
// Process the letter with a switch statement
// Print a special message for 'a' or 'A', 'z' or 'Z'
// Print a default message for all other letters
switch ( letter )
case a:
case A:
cout << "Wow you entered the first letter!" << endl;
case z:
case Z:
cout << "Too bad, you entered the last letter" << endl;
default:
cout << "You entered a boring letter: " << letter << endl;
return 0;
}