- /*14.印出兩個 N * N 矩陣的乘積。*/
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main(void){
-
- int n;
-
- cout << "請輸入數字" << endl;
- cin >> n;
-
- int a[n][n];
- int b[n][n];
-
- for(int i=0; i<n; i++){
- for(int j=0; j<n; j++){
- a[i][j] = (rand()%10);
- b[i][j] = (rand()%10);
- cout << a[i][j] * b[i][j] << " ";
- }
- cout << endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |