MIPI_BaseC_WebinarFRTK/18_Seminar05/03_digits_p7.c
2024-11-13 09:22:28 +03:00

19 lines
395 B
C

#include <stdio.h>
int main( )
{
int n, count;
printf("Input number: ");
scanf("%d", &n);
count = 0;
while (n != 0)
{
count++;
n = n / 10; // Отбросили одну цифру
}
//~ for(count = 0;n != 0;n /= 10,count++) //; Отбросили одну цифру
//~ {}
printf("In %d found %d digits", n, count);
return 0;
}