Board logo

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

作者: tonyh    時間: 2014-10-18 10:43     標題: 巢狀迴圈 (二) - 九九乘法表1

本帖最後由 tonyh 於 2014-10-18 11:06 編輯

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

作者: 梁和雋    時間: 2014-12-6 11:12

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

作者: 洪振庭    時間: 2014-12-6 11:12

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

作者: 李知易    時間: 2014-12-6 11:13

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

作者: 謝瀞儀    時間: 2014-12-6 11:14

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





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