Board logo

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

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

[attach]4999[/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-10-13 11:12

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

作者: 楊侍穎    時間: 2018-10-13 11: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. }
複製代碼

作者: 湯郡一    時間: 2018-10-13 11:17

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

作者: 蘇昱全    時間: 2018-10-13 11:17

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

作者: 陳潔歆    時間: 2018-10-13 11:18

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

作者: 田宇任    時間: 2018-10-13 11:20

  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.             }
  11.     cout<<endl;
  12.     }                    
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼





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