Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

. 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.

Explanation / Answer

Dear Friend hope this will help u PLEASE RATE #include #include #include #include #include using namespace std; ifstream myfile; int counts[26] = {0}; char letters[26]={'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'}; void copytext(string ); void proccissing_lines(string ); void countLetters(string str); int main() { string filename; cout