Bài 43: Hãy đếm số lượng chữ số số nguyên dương n #include #include #include int main() { long themang, n; int sochuso; { printf("\nNhap n: "); scanf("%ld", &n); }while(n < && printf("\nLoi: n >= !")); sochuso = 0; themang = n; if(n == 0) sochuso = 1; while(themang != 0) { sochuso = sochuso + 1; themang = themang / 10; } printf("\nSo chu so cua %ld la %d", n, sochuso); //int sochuso = n == ? : (int)log10((float)n) + 1; getch(); return 0; }