實現倒數的程序

#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");
相關文章
相關標籤/搜索