Board logo

標題: for 迴圈 (一) [打印本頁]

作者: tonyh    時間: 2019-8-30 19:23     標題: for 迴圈 (一)

利用for迴圈,在畫面上直向顯示1~10。
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       //初始值; 持續的條件; 變化方式
  7.     for(int i=1; i<=10; i++)  
  8.     {
  9.          cout<<i<<endl;
  10.     }
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

作者: 林政瑜    時間: 2019-8-30 19:46

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

作者: 施褕均    時間: 2019-8-30 19:47

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

作者: 楊佑諺    時間: 2019-8-30 19:47

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

作者: 余有晉    時間: 2019-8-30 19:47

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

作者: 黃宥華    時間: 2019-8-30 19:48

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

作者: 蔡忻霓    時間: 2019-8-30 19:48

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

作者: 黃辰昊    時間: 2019-8-30 19:49

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

作者: 孫嘉駿    時間: 2019-8-30 19:49

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

作者: 陳宥穎    時間: 2019-8-30 19:50

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

作者: 董宸佑    時間: 2019-8-30 19:52

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





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