Răspuns :

#include <iostream>

using namespace std;

int main(){

int n,zero=0;

while(n){

if(n%10==0) zero++;

n=n/10;

}

cout << zero;

}