Board logo

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

作者: 蔡昀儒    時間: 2019-7-30 11:13     標題: for 迴圈

[attach]6902[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int x;
  7.   for (x=1;x<=6;x++)
  8.   {
  9.     cout<<"第"<<x<<"名"<<endl;  
  10.   }
  11.    
  12.   system("pause");
  13.   return 0;
  14. }
複製代碼

作者: 龔品誠    時間: 2019-7-30 11:13

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

作者: 薛博仁    時間: 2019-7-30 11:13

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

作者: 張博評    時間: 2019-7-30 11:14

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

作者: 立晟    時間: 2019-7-30 11:15

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

作者: 黃鋐粟    時間: 2019-7-30 11:15

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

作者: 陳柏臻    時間: 2019-7-30 11:17

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





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