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[]) {
// do-while loop
// 無論如何先做一次內容再做判斷
// do{ }while();
int i=0, sum=0;
do{
sum += i;
i++;
}while(
i<=10
);
printf("%i", sum);
return 0;
}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言