Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include "header8.h"
- using namespace std;
- int main()
- {
- Counter test;
- cout << "Enter a string: " << endl;
- getline(cin, test.input);
- test.countnumbers();
- test.countcharacters();
- cout <<"The amount of each number is: " <<endl;
- test.showNumbers();
- cout <<""<<endl;
- cout <<"The amount of each letter is: " <<endl;
- test.showLetters();
- test.checkStatus();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement