Created
March 2, 2022 17:40
-
-
Save shastr/965f94eef5ad934beabfe36758473124 to your computer and use it in GitHub Desktop.
This file contains 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
public static void Main(string[] args) | |
{ | |
int photos = 52; | |
int photosPerRow = 3; | |
int fullRowsCount = photos / photosPerRow; | |
int overflowCount = photos % photosPerRow; | |
Console.WriteLine("Available Photos : " + fullRowsCount); | |
Console.WriteLine("Photos Overflow : " + overflowCount); | |
Console.ReadLine(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment