返回列表 發帖

巢狀迴圈 - 九九乘法表 (一)

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

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

以上5位同學OK
回復 3# 楊芊琦
輸出格式不符合題目要求

TOP

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

TOP

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

TOP

本帖最後由 陳宥霖 於 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. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

本帖最後由 黃品禎 於 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. }
複製代碼

TOP

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

TOP

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

TOP

返回列表