Advertisement
BowserFlash13

dsad

May 15th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. using namespace std;
  5.  
  6.  
  7.  
  8. int main() {
  9.  
  10.     int a,sum = 0, b;
  11.     cin >> a;
  12.     while (a>0) {
  13.         b = a % 10;
  14.         if (b%2==0) {
  15.             sum++;
  16.         }
  17.         a /= 10;
  18.     }
  19.     cout << sum;
  20.  
  21.     system("pause");
  22.     return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement