. Write a C++ program that will read in one or more lines of text and then deter
ID: 3630811 • Letter: #
Question
. Write a C++ program that will read in one or more lines of text and then determine the following:• The number of uppercase letters in the text.
• The number of lowercase letters in the text.
• The number of digits in the text.
• The number of whitespace characters (i.e., blanks or newlines) in the text.
• The number of other, non-letter, non-digit, non-whitespace characters in the text.
After reading the text, the program should display the text followed by a display of all of the above statistics.