fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // DeklariĊĦemo dvodimenzionalni niz sa 3 reda i 4 kolone
  6. int matrix[3][4] = {
  7. {1, 2, 3, 4},
  8. {5, 6, 7, 8},
  9. {9, 10, 11, 12}
  10. };
  11.  
  12. // Ispisujemo elemente matrice
  13. cout << "Matrica izgleda ovako:" << endl;
  14. for (int i = 0; i < 3; i++) {
  15. for (int j = 0; j < 4; j++) {
  16. cout << matrix[i][j] << " ";
  17. }
  18. cout << endl; // Novi red posle svakog reda matrice
  19. }
  20.  
  21. return 0;
  22. }
  23.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
Matrica izgleda ovako:
1 2 3 4 
5 6 7 8 
9 10 11 12