Advertisement
JosepRivaille

X08783: Quàntes hola

Feb 26th, 2015
313
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. using namespace std;
  4.  
  5.  
  6. //Pre: Llegeix una frase
  7. //Post: Ens diu el nombre de "hola" que hi han
  8. int main() {
  9.   string h;
  10.   int count = 0;
  11.   while (cin >> h) {
  12.   if (h == "hola") ++count;
  13.   }
  14.   cout << count << endl;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement