#include "iostream"
#include "stdlib.h"
#include "locale.h"
using namespace std;
int main(){
setlocale(LC_ALL, "russian");
int number; // число
int counter = 0; // количество 0
cout << "Введите число: "; cin >> number;
while(number > 10){
if(number % 10 == 0){
counter ++;
}
number /= 10;
cout << counter << endl;
system("pause");
return 0;
#include "iostream"
#include "stdlib.h"
#include "locale.h"
using namespace std;
int main(){
setlocale(LC_ALL, "russian");
int number; // число
int counter = 0; // количество 0
cout << "Введите число: "; cin >> number;
while(number > 10){
if(number % 10 == 0){
counter ++;
}
number /= 10;
}
cout << counter << endl;
system("pause");
return 0;
}