One Note with Two Memories
一個人的筆記,兩個人的回憶。 Without catching, the dream only is the dream
....
2014年5月17日 星期六
[長知識] C語言 - 新手篇章 - 利用do while迴圈做出倒數計時
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int i=10;
do{
if(i >0){
printf("%i\n", i);
}else{
printf("時間到!");
}
i--;
}while(
i>=0
);
return 0;
}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言