Advertisement
Agaciora

Untitled

May 21st, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1.               cout << "   ";
  2.         for(i = 0; i < k; i++) cout << setw(3) << i;
  3.         cout << endl << endl;
  4.         for(i = 0; i < w; i++)
  5.         {
  6.             cout << setw(3) << i;
  7.             for(j = 0; j < k; j++) cout << setw(3) << (int) tab[i][j];
  8.             cout << endl;
  9.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement