Skip to content

Instantly share code, notes, and snippets.

@anikishkaf
Last active February 7, 2025 07:05
Show Gist options
  • Save anikishkaf/095f1fd64c8957feeb59937ee14872f9 to your computer and use it in GitHub Desktop.
Save anikishkaf/095f1fd64c8957feeb59937ee14872f9 to your computer and use it in GitHub Desktop.
0.3.
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