#include <stdio.h>
int main(){
    int x;
    x=10;
    while(0<--x)//每次减一位
        printf("%d ",x);
    printf("\n");
    x=10;
    while(0<----x)//每次减两位
        printf("%d ",x);
    printf("\n");
    x=10;
    while(0<------x)//每次减三位
        printf("%d ",x);
    return 0;
}

实现倒数的程序

转载于:https://www.cnblogs.com/akrusher/articles/5397014.html

相关文章:

  • 2021-12-05
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2021-07-28
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-03-02
  • 2021-12-05
  • 2021-11-02
  • 2022-12-23
  • 2022-02-20
  • 2022-12-23
相关资源
相似解决方案