Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. for (int row = 0; row < 5; row++)
  2. {
  3. for (int column = 0; column < 5; column++)
  4. {
  5. cout << " |" << WheelArray[row][column] << "| ";
  6. }
  7. cout << endl;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement