Last active
May 8, 2022 12:31
-
-
Save ghostofgamer/bf06e1dc32e332142208f5a25af8316a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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