Board logo

標題: 022 迴圈顯示九九乘法表 [打印本頁]

作者: 游東祥    時間: 2014-3-15 15:15     標題: 022 迴圈顯示九九乘法表

[attach]855[/attach]
作者: 李允軒    時間: 2014-3-15 18:29

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.         for (int x = 1; x <= 9; x = x + 1)
  7.         {
  8.        
  9.                 for (int y = 1; y <= 9; y = y++)
  10.                 {
  11.                         cout << x << "*" << y << "=" << x*y << endl;
  12.                        
  13.                 }
  14.         }
  15.         system ("pause");
  16.         return 0;
  17. }
複製代碼

作者: 林宇翔    時間: 2014-3-16 10:17

本帖最後由 林宇翔 於 2014-3-29 13:24 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.         cout << "九九乘法表" << endl;
  7.         cout << "==========" << endl;
  8.         for (int x = 1; x <= 9; x = x + 1)
  9.         {
  10.         
  11.             for (int y = 1; y <= 9; y = y++)
  12.             {
  13.                     cout << x << "*" << y << "=" << x*y << "        "       ;
  14.                         
  15.             }
  16.             cout << endl;
  17.         }
  18.         system ("pause");
  19.         return 0;
  20. }
複製代碼





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