Skip to content

Instantly share code, notes, and snippets.

@forp7
Created October 31, 2025 09:13
Show Gist options
  • Save forp7/edb742ae03eef2ae5e0188f5054f7f2e to your computer and use it in GitHub Desktop.
Save forp7/edb742ae03eef2ae5e0188f5054f7f2e to your computer and use it in GitHub Desktop.
using System;
namespace ConsoleApp4
{
internal class Program
{
static void Main(string[] args)
{
int picturesInAlbum = 52;
int numberOfDisplayedImagesInRow = 3;
int filledRows = picturesInAlbum / numberOfDisplayedImagesInRow;
int beyondMeasureOfPicturesInRow = picturesInAlbum % numberOfDisplayedImagesInRow;
Console.WriteLine($"Заполненные ряды {filledRows}");
Console.WriteLine($"сверх меры {beyondMeasureOfPicturesInRow}");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment