Advertisement
Guest User

Untitled

a guest
Jul 17th, 2013
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include "header8.h"
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. Counter test;
  10.  
  11. cout << "Enter a string: " << endl;
  12. getline(cin, test.input);
  13.  
  14.  
  15. test.countnumbers();
  16. test.countcharacters();
  17.  
  18.  
  19. cout <<"The amount of each number is: " <<endl;
  20. test.showNumbers();
  21.  
  22. cout <<""<<endl;
  23.  
  24. cout <<"The amount of each letter is: " <<endl;
  25. test.showLetters();
  26.  
  27. test.checkStatus();
  28.  
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement