Board logo

標題: [作業] for 迴圈 (二) [打印本頁]

作者: tonyh    時間: 2015-4-24 21:24     標題: [作業] for 迴圈 (二)

本帖最後由 tonyh 於 2015-4-24 21:32 編輯

利用for迴圈, 在畫面上直列顯示25~10.
作者: 沈子耕    時間: 2015-4-24 21:32

本帖最後由 沈子耕 於 2015-4-24 21:37 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=25; i>=10; i--)
  7.         cout<<i<<endl;                       
  8.    
  9.    
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 陳思惟    時間: 2015-4-24 21:38

本帖最後由 tonyh 於 2015-5-1 20:03 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.        //起始值  終止值  遞增或遞減的條件
  7.     for(int i=25; i>=10; i--)   //i=i-1
  8.         cout<<i<<endl;
  9.     system("pause");
  10.     return 0;                 
  11. }
複製代碼

作者: 曾挺桂    時間: 2015-5-1 20:08

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

作者: 林侑成    時間: 2015-5-1 20:13

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





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