Board logo

標題: while 迴圈 [打印本頁]

作者: tonyh    時間: 2015-6-12 21:20     標題: while 迴圈

本帖最後由 tonyh 於 2015-6-12 21:24 編輯

利用while迴圈, 垂直列出 1~20.
作者: 沈子耕    時間: 2015-6-12 21:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     int i=1;
  6.     while(i<=20){
  7.       cout<<i<<endl;
  8.       i++;            
  9.     }
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 曾挺桂    時間: 2015-6-12 21:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int i=1;
  7.     while(i<=20){
  8.         cout<<i<<endl;
  9.         i++;   
  10.     }
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

作者: 陳思惟    時間: 2015-6-12 21:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int i=1;
  7.     while(i<=20)
  8.     {
  9.       cout<<i<<endl;
  10.       i++;
  11.     }
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2