(Data Processing) Write a C++ program that accepts a character as input data and determines whether the character is an uppercase letter. An uppercase letter is any character that's greater than or equal to "A" and less than or equal to "Z." If the entered character is an uppercase letter, display the message The character just entered is an uppercase letter.
If the entered letter isn't uppercase, display the message The character just entered is not an uppercase letter.