Advertisement
SteelK

Untitled

Jun 28th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. void coutMas(int** mas, size_t x, size_t y)
  2. {
  3.     for (size_t i = 0; i < x; i++)
  4.     {
  5.         for (size_t j = 0; j < y; j++)
  6.             cout << mas[i][j] << "\t";
  7.         cout << endl;
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement