Advertisement
Guest User

Untitled

a guest
Jul 17th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 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: \n";
  12. getline(cin, test.input);
  13.  
  14. test.countnumbers();
  15. test.showNumbers();
  16.  
  17. cout << test.numbers[4] << endl;
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement