Skip to content

Instantly share code, notes, and snippets.

@tigercubgames
Last active June 3, 2025 12:39
Show Gist options
  • Save tigercubgames/55d1c7e53282dbffe747ef71d75c03a4 to your computer and use it in GitHub Desktop.
Save tigercubgames/55d1c7e53282dbffe747ef71d75c03a4 to your computer and use it in GitHub Desktop.
Основы программирования. ДЗ: Картинки
using System;
namespace Homework
{
internal class Program
{
static void Main(string[] args)
{
int totalImage = 52;
int imagePerRow = 3;
int fullRows = totalImage / imagePerRow;
int remainingImage = totalImage % imagePerRow;
Console.WriteLine($"Заполненных рядов: {fullRows}, оставшихся картинок: {remainingImage}.");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment