hey this is my first time taking c++ I am having a hard time with this problem:
•MAX_COUNT is a constant and equal to 30
•The Calculate Stats box should determine
◦the number of words entered
◦the number of capital letters entered
◦the number of letters entered between 'a' and 'm'
•A valid entry is any lowercase or uppercase letter. Punctuation and numbers should not be allowed. Spaces are allowed.
•The valid letters must be stored in a one-dimentional array
so far I have two separate codes
first one for word count
#include <iostream>
#include <string>
using namespace std;
int main()
{
const int Max_Count = 30;
string inputstring;
cout << "please type in a string: ";