這是很簡單的C 語言 while 迴圈:. #include <stdio.h> int main() { int x = 10; while (x --> 0) { // x 遞減至0 printf("%d ", x); } }.
確定! 回上一頁