Last active
May 23, 2025 15:11
-
-
Save pluxurypirate/95ee76157eb716cc7159a861d4e20404 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
namespace homeWorkPictures | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int allPictures = 52; | |
int picturesInLine = 3; | |
int fullLines; | |
int remainingPictures; | |
remainingPictures = allPictures % picturesInLine; | |
fullLines = allPictures / picturesInLine; | |
Console.WriteLine($"Оставшихся картинок: {remainingPictures}"); | |
Console.WriteLine($"Заполненных строк: {fullLines}"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment