Advertisement
yejolga

ol_4_03

Nov 1st, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4. //#include <vector>
  5. //#include <cmath>
  6.  
  7. //#define n 3
  8.  
  9. using namespace std;
  10.  
  11. int main()
  12. {
  13.     ifstream cin("input.txt");
  14.  
  15.     string name = "";
  16.     short i = 0;
  17.     while(!cin.eof() && name != "Petr")
  18.     {
  19.         i++;
  20.         getline(cin, name);
  21.     }
  22.     cout<<i;
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement