main.cpp 1007 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #include <iostream>
  2. #define TAILLE_X 6
  3. #define TAILLE_Y 4
  4. using namespace std;
  5. void presenterTableau(int tableauPtrCopie[TAILLE_Y][TAILLE_X]);
  6. int main()
  7. {
  8. cout << "Voici un tableau :" << endl;
  9. int tableauBiDimensions[TAILLE_Y][TAILLE_X] = { {1,2,1,5,4,9},
  10. {3,4,3,4,5,9},
  11. {9,9,9,9,9,9},
  12. {1,8,4,5,5,6}};
  13. for (int i(0); i<TAILLE_Y; i++)
  14. {
  15. for (int j(0); j<TAILLE_X; j++)
  16. {
  17. cout << tableauBiDimensions[i][j];
  18. }
  19. cout << endl;
  20. }
  21. presenterTableau(tableauBiDimensions);
  22. cout << &tableauBiDimensions << endl;
  23. return 0;
  24. }
  25. void presenterTableau(int tableauPtrCopie[TAILLE_Y][TAILLE_X])
  26. {
  27. for (int i(0); i<TAILLE_Y; i++)
  28. {
  29. for (int j(0); j<TAILLE_X; j++)
  30. {
  31. cout << tableauPtrCopie[i][j];
  32. }
  33. cout << endl;
  34. }
  35. }