Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Programming Exercise 5-3 Enter UppercaseLette... + Instructions + > Terminal Write an application named Enter UppercaseLetters that asks the user to type an uppercase letter
Programming Exercise 5-3 Enter UppercaseLette... + Instructions + > Terminal Write an application named Enter UppercaseLetters that asks the user to type an uppercase letter from the keyboard. If the character entered is an uppercase letter, display: OK; if it is not an uppercase letter, display the error message: Sorry - that was not an uppercase letter. . The program continues until the user types an exclamation point (!). 1 using System; 2 using static system.Console; 3 class EnteruppercaseLetters 4 { 5 static void Main() 6 { 7 // write your main here. 8 } 10 An example of the program is shown below: Enter an uppercase letter >> T OK Enter an uppercase letter or ! to quit t Sorry - that was not an uppercase letter. Enter an uppercase letter or ! to quit ! Grading When you have completed your program, click the Submit button to record your score
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started