Skip to content

Instantly share code, notes, and snippets.

@ghostofgamer
Created May 8, 2022 11:21
Show Gist options
  • Save ghostofgamer/84ad4e5b58e6610fadaa9c488600b716 to your computer and use it in GitHub Desktop.
Save ghostofgamer/84ad4e5b58e6610fadaa9c488600b716 to your computer and use it in GitHub Desktop.
int amountPicture = 52;
int pictureInRow = 3;
int fullRow;
int extra;
fullRow = amountPicture / pictureInRow;
extra = amountPicture - fullRow * pictureInRow;
Console.WriteLine(fullRow);
Console.WriteLine(extra);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment