返回列表 發帖

[作業] for 迴圈 (一)

本帖最後由 tonyh 於 2016-4-16 11:51 編輯

利用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++)   //i=i+1  i+=1
  8.         cout<<i<<endl;
  9.     system("pause");
  10.     return 0;                 
  11. }
複製代碼

本帖最後由 陳泓瑜 於 2016-4-23 10:23 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int f;
  7.    
  8.     for(f=1;f<=10;f++)
  9.           cout<<f<<endl;
  10.    
  11.     system("pause");
  12.     return 0;
  13. }   
複製代碼

TOP

  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. }
複製代碼

TOP

  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;
複製代碼

TOP

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

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

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

TOP

返回列表