Apkawa

Untitled

May 26th, 2020
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. #include <Windows.h>
  3. using namespace std;
  4.  
  5. string a;
  6.  
  7. int ans;
  8.  
  9. int main() {
  10.     SetConsoleCP(1251);
  11.     SetConsoleOutputCP(1251);
  12.  
  13.     while(cin >> a) {
  14.         if (a.back() == 'и')
  15.             ++ans;
  16.     }
  17.     cout << ans;
  18.  
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment