返回列表 發帖

044 二維陣列九九乘法表

二維陣列九九乘法表

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

TOP

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

TOP

返回列表