Board logo

標題: while 迴圈 (四) - 九九乘法表 [打印本頁]

作者: tonyh    時間: 2014-12-6 10:41     標題: while 迴圈 (四) - 九九乘法表

本帖最後由 tonyh 於 2014-12-6 11:16 編輯

[attach]1072[/attach]
  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:15

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

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

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

作者: 李知易    時間: 2014-12-6 18:07

  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-13 10:18

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





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