Skip to content

Instantly share code, notes, and snippets.

@Attosius
Last active August 25, 2025 10:52
Show Gist options
  • Save Attosius/99fd2f71aa249124e2540052b92d175d to your computer and use it in GitHub Desktop.
Save Attosius/99fd2f71aa249124e2540052b92d175d to your computer and use it in GitHub Desktop.
ДЗ: Картинки
using System;
namespace IJuniorTasks
{
internal class Program
{
static void Main(string[] args)
{
int picturesOnScreen = 52;
int picturesCountInRow = 3;
var fullRows = picturesOnScreen / picturesCountInRow;
var picturesOnLastRow = picturesOnScreen % picturesCountInRow;
Console.WriteLine($"Выведено картинок: {picturesOnScreen}, заполнено рядов: {fullRows}, сверх меры картинок: {picturesOnLastRow}.");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment