Skip to content

Instantly share code, notes, and snippets.

@ghostofgamer
Last active May 8, 2022 12:31
Show Gist options
  • Save ghostofgamer/bf06e1dc32e332142208f5a25af8316a to your computer and use it in GitHub Desktop.
Save ghostofgamer/bf06e1dc32e332142208f5a25af8316a to your computer and use it in GitHub Desktop.
int amountPictures = 52;
int picturesInRow = 3;
int fullRows;
int extraPictures;
fullRows = amountPictures / picturesInRow;
extraPictures = amountPictures % picturesInRow;
Console.WriteLine(fullRows);
Console.WriteLine(extraPictures);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment