Skip to content

Instantly share code, notes, and snippets.

@pluxurypirate
Last active May 23, 2025 15:11
Show Gist options
  • Save pluxurypirate/95ee76157eb716cc7159a861d4e20404 to your computer and use it in GitHub Desktop.
Save pluxurypirate/95ee76157eb716cc7159a861d4e20404 to your computer and use it in GitHub Desktop.
ДЗ: Картинки
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