Created
October 31, 2025 09:13
-
-
Save forp7/edb742ae03eef2ae5e0188f5054f7f2e 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
| 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