fork download
  1. #include <iostream>
  2. #include <cstdlib> // Để sử dụng hàm rand() và srand()
  3. #include <ctime> // Để sử dụng hàm time()
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. const int SIZE = 8;
  9. int matrix[SIZE][SIZE];
  10.  
  11. // Khởi tạo seed cho hàm rand()
  12. srand(static_cast<unsigned>(time(0)));
  13.  
  14. // Tạo ma trận 8x8 với số ngẫu nhiên từ 1 đến 100
  15. for (int i = 0; i < SIZE; i++) {
  16. for (int j = 0; j < SIZE; j++) {
  17. matrix[i][j] = rand() % 100 + 1; // Số ngẫu nhiên từ 1 đến 100
  18. }
  19. }
  20.  
  21. // In ma trận ra màn hình
  22. cout << "Ma tran 8x8:" << endl;
  23. for (int i = 0; i < SIZE; i++) {
  24. for (int j = 0; j < SIZE; j++) {
  25. cout << matrix[i][j] << " ";
  26. }
  27. cout << endl;
  28. }
  29.  
  30. return 0;
  31. }
  32.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Ma tran 8x8:
66 94 77 83 2 70 72 12 
20 40 97 18 87 18 44 3 
38 12 27 19 4 57 1 2 
96 14 89 5 83 47 78 48 
40 54 30 93 76 53 4 95 
92 52 64 78 69 7 33 58 
71 59 28 26 15 28 28 62 
93 16 18 75 14 96 22 53