Guest User

Untitled

a guest
Nov 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. #include <string>
  4. #include <algorithm>
  5. int main ()
  6. {
  7.     cout << "Insira a palavra" << endl;
  8.     std::string content;
  9.     std::string line;
  10.     getline(cin,line);
  11.     std::string text = line;
  12.     content += line;
  13.     std::cout << "Numero de vezes e = " << std::count(text.begin(), text.end(), line);
  14.  cin.get();
  15. return 0;
  16. }
Add Comment
Please, Sign In to add comment