返回列表 發帖
  1. /*14.印出兩個 N * N 矩陣的乘積。*/
  2. #include <iostream>
  3. #include <cstdlib>
  4. using namespace std;
  5. int main(void){
  6.    
  7.     int n;
  8.    
  9.     cout << "請輸入數字" << endl;
  10.     cin >> n;
  11.    
  12.     int a[n][n];
  13.     int b[n][n];
  14.    
  15.     for(int i=0; i<n; i++){
  16.             for(int j=0; j<n; j++){
  17.                     a[i][j] = (rand()%10);
  18.                     b[i][j] = (rand()%10);
  19.                     cout << a[i][j] * b[i][j] << " ";
  20.             }
  21.             cout << endl;
  22.     }
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

返回列表