Bài 46: Hãy đếm số lượng chữ số lẻ 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) { if(themang % == 1) { sochuso = sochuso + 1; } themang = themang / 10; } printf("\nSo chu so le cua %ld la %d", n, sochuso); //int sochuso = n == ? : (int)log10((float)n) + 1; getch(); return 0; }