Last active
February 7, 2025 07:05
-
-
Save anikishkaf/095f1fd64c8957feeb59937ee14872f9 to your computer and use it in GitHub Desktop.
0.3.
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
namespace mainShkaf | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int row = 3; | |
int albumImageCount = 52; | |
int rowTheWholePart = albumImageCount / row; | |
int rowRemainder = albumImageCount % row; | |
int rowCount = rowTheWholePart + rowRemainder; | |
Console.WriteLine(rowCount); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment