Răspuns:
#include <iostream>
using namespace std;
int main()
{
int n, cercuri=0, cif;
cin >> n;
if (n==0) cercuri=1;
else
{
while (n>0)
{
cif=n%10;
if (cif==8) cercuri+=2;
if (cif==0 || cif==4 || cif==6 || cif==9)
++cercuri;
n/=10;
}
}
cout << cercuri;
return 0;
}
Explicație: