Board logo

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

作者: 陳品肇    時間: 2018-11-10 14:51     標題: 巢狀迴圈 (一) - 九九乘法表1

[attach]5260[/attach]
  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. }
複製代碼

作者: 趙一鳴    時間: 2018-11-10 15:09

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

作者: 王瑞喻    時間: 2018-11-10 15:13

  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=j+1)
  9.          {
  10.              cout<<i<<"*"<<j<<"="<<i*j<<"\t";
  11.          }
  12.          cout<<endl;
  13.     }
  14.     system ("pause");
  15.     return 0;
  16. }
複製代碼

作者: 吳孟修    時間: 2018-11-10 15:13

  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<<"\n";
  13.   }
  14.   system("pause");   
  15.   return 0;
  16. }
複製代碼

作者: 吳孟書    時間: 2018-11-10 15:13

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

作者: 曲書辰    時間: 2018-11-10 15: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";
  11.                       cout<<""<<endl;
  12.                            
  13.                     }
  14.                
  15.                }
  16. system("pause");   
  17. return 0;   
  18. }
複製代碼

作者: 周孫印    時間: 2018-11-10 15: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. }
複製代碼

作者: 章幼莛    時間: 2018-11-17 13: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.     system ("pause");
  15.     return 0;
  16. }
複製代碼

作者: 洪寬瀧    時間: 2018-11-17 13:27

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


  17.         system("pause");
  18.         return 0;
  19. }
複製代碼





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