Write a C++ program to do the following: Read the attached file ("TextFile.txt")  and the count the number of times each alphabetic letter is used. Do not count punctuation, whitespace, or numbers. Only count letters a-z. When counting, treat lower and upper case characters the same. Use the attached CPP program as a guide to manage the counting. Use the structure and array provided to maintain counts. See examples in the program. When the all processing is completed, display the total for all letter counts. Example Output Below.:  This numbers below are not intended to be accurate. No special formatting required but should be readable.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

Write a C++ program to do the following:

Read the attached file ("TextFile.txt")  and the count the number of times each alphabetic letter is used. Do not count punctuation, whitespace, or numbers. Only count letters a-z. When counting, treat lower and upper case characters the same.

Use the attached CPP program as a guide to manage the counting. Use the structure and array provided to maintain counts. See examples in the program.

When the all processing is completed, display the total for all letter counts.

Example Output Below.:  This numbers below are not intended to be accurate. No special formatting required but should be readable.

A:  103

B:  15

C: 22
... // remaining letters
Z: 4

cpp code:

#include "stdafx.h"

#include <iostream>

using namespace std;

 

struct LetterCount

{

    char letter;

    int count;

};

// declare an array of structure

const int MAXLETTERS = 26;

LetterCount myLetterCount[MAXLETTERS];

 

int main()

{

      // initialize - MOVE THIS TO A METHOD

      for (int idx = 0; idx<MAXLETTERS; idx++) {

      myLetterCount[idx].count = 0;

      myLetterCount[idx].letter = 'a' + idx; // this will load a-z

  }

 

 

      // search and inc EXAMPLE

      char letterToFind = 'a';

      for (int idx = 0; idx<MAXLETTERS; idx++) {

         if (myLetterCount[idx].letter == letterToFind) {

            // inc the count here

      }

  }

 

 

       // showLetterCounts - MOVE THIS TO A METHOD

      for (int idx = 0; idx<MAXLETTERS; idx++) {

      cout << myLetterCount[idx].letter << " " << myLetterCount[idx].count << endl;

  }

}

TextFile:

"Count On Me"

If you ever find yourself stuck in the middle of the sea
I'll sail the world to find you
If you ever find yourself lost in the dark and you can't see
I'll be the light to guide you

We find out what we're made of
When we are called to help our friends in need

You can count on me
Like 1, 2, 3
I'll be there
And I know when I need it
I can count on you
Like 4, 3, 2
You'll be there
'Cause that's what friends are supposed to do

If you're tossin' and you're turnin'
And you just can't fall asleep
I'll sing a song beside you
And if you ever forget how much you really mean to me
Every day I will remind you

We find out what we're made of
When we are called to help our friends in need

You can count on me
Like 1, 2, 3
I'll be there
And I know when I need it
I can count on you
Like 4, 3, 2
You'll be there
'Cause that's what friends are supposed to do

You'll always have my shoulder when you cry
I'll never let go, never say goodbye
You know

You can count on me
Like 1, 2, 3
I'll be there
And I know when I need it
I can count on you
Like 4, 3, 2
And you'll be there
'Cause that's what friends are supposed to do

You can count on me 'cause I can count on you
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education