C语言如何编程实现给出一个不多于4位的正整数,输出它是几位数并且按逆序输出每一位数字?

日期:2019-08-02 10:37:02 人气:2

C语言如何编程实现给出一个不多于4位的正整数,输出它是几位数并且按逆序输出每一位数字?

#include #include int main(void) { int num; do { printf("请输入一个不大于四位的数据:\n"); scanf("%d", &num); while(getchar()!='\n') //防止意外输入无效字符 continue; }while(!(num>0 && num<10000));
    A+
热门评论