Board logo

標題: 巢狀迴圈 - 九九乘法表 (一) [打印本頁]

作者: 鄭繼威    時間: 2022-10-1 01:37     標題: 巢狀迴圈 - 九九乘法表 (一)

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

作者: 盧禹丞    時間: 2022-10-1 09:43

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

作者: 楊芊琦    時間: 2022-10-1 11:19

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

作者: 吳俊頡    時間: 2022-10-1 13:26

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

作者: 林雋喆    時間: 2022-10-1 13:35

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

作者: 宜儒    時間: 2022-10-1 13:36

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

作者: 鄭繼威    時間: 2022-10-1 13:39

本帖最後由 鄭繼威 於 2022-10-1 14:16 編輯

以上5位同學OK
回復 3# 楊芊琦
輸出格式不符合題目要求
作者: 羅紹齊    時間: 2022-10-1 13:46

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

作者: 鍾瑄羽    時間: 2022-10-1 13:49

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

作者: 陳宥霖    時間: 2022-10-1 13:50

本帖最後由 陳宥霖 於 2022-10-1 13:51 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     for(int i=1; i<=9; i++)
  7.     {
  8.         for(int j=1; j<=9; j++)
  9.         {
  10.             cout<<i<<"*"<<j<<"="<<i*j<<"\t";  
  11.         }
  12.         cout<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

作者: 翁川祐    時間: 2022-10-1 13:53

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

作者: 徐啟祐    時間: 2022-10-1 13:59

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

作者: 陳泓亦    時間: 2022-10-1 14:14

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

作者: 葉佳和    時間: 2022-10-1 14:15

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

作者: 羅暐傑    時間: 2022-10-1 14:17

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

作者: 陳牧謙    時間: 2022-10-1 14:19

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

作者: 黃品禎    時間: 2022-10-1 14:21

本帖最後由 黃品禎 於 2022-10-1 14:23 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=9; i++)  
  7.     {
  8.             for(int j=1; j<=9; j++)
  9.             {
  10.          cout<<i<<"*"<<j<<"="<<i*j<<"\t";
  11.          }
  12.          cout<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 吳丞治    時間: 2022-10-1 14:49

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

作者: 李宗儒    時間: 2024-1-3 18:07

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6. for(int i=1;i<=9;i++){

  7.     for(int j=1;j<=9;j++){
  8.     cout<<i<<"*"<<j<<"="<<i*j<<"\t";
  9.   }
  10.   cout<<endl;
  11. }

  12. return 0;
  13. }
複製代碼





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