Untitled
unknown
c_cpp
2 years ago
267 B
4
Indexable
#include <iostream> #include <cmath> using namespace std; int main() { int a,sum = 0; cin >> a; while (a != 0) { if ((a % 10) % 2 == 0) { sum += 1; } a /= 10; } cout << sum; return 0; }
Editor is loading...