Board logo

標題: 044 二維陣列九九乘法表 [打印本頁]

作者: 游東祥    時間: 2014-4-19 15:07     標題: 044 二維陣列九九乘法表

二維陣列九九乘法表
作者: 李允軒    時間: 2014-4-20 18:56

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

  4. int main()
  5. {
  6.         cout << "九九乘法表" << endl;
  7.         cout << "==========" << endl;
  8.         int a = 9;
  9.         int b = 9;
  10.     int z[a][b];
  11.     for (int i = 0; i < a; i++)
  12.                 for (int j = 0; j < b; j++)
  13.                         z[i][j] = (i+1) * (j+1);
  14.                        
  15.         for (int i = 0; i < a; i++){
  16.        
  17.                 for ( int j = 0; j < b; j++)
  18.                         cout << z[i][j] << "\t";
  19.                         cout << endl;
  20.         }
  21.         system ("pause");       
  22.     return 0;
  23. }
複製代碼

作者: 林宇翔    時間: 2014-4-26 14:01

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         cout << "九九乘法表" << endl;
  7.                 cout << "==========" << endl;
  8.                 int z[9][9];
  9.                 for(int x = 0; x < 9; x++)
  10.                 {
  11.                         for(int y = 0; y < 9; y++)
  12.                         {
  13.                                 z[x][y] = (x+1) * (y+1);
  14.                         }
  15.                 }
  16.                 for (int x = 0; x < 9; x++)
  17.                 {
  18.             for ( int y = 0; y < 9; y++)
  19.                         {
  20.                  cout << z[x][y] <<"\t";
  21.                         }
  22.                         cout << endl;
  23.         }
  24.         system ("pause");
  25.         return 0;
  26. }
複製代碼





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