返回列表 發帖

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

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

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  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.    cout<<i<<"*"<<j<<"="<<i*j<<"\t";
  10. }
  11.    }
  12.    
  13.     system ("pause");
  14.     return 0;
  15. }
複製代碼
Attention Seeker </3

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

TOP

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

TOP

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

TOP

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

TOP

返回列表