Skip to content

Instantly share code, notes, and snippets.

@GigaOrts
Last active January 18, 2023 14:47
Show Gist options
  • Save GigaOrts/32b5e12bb5b88dc394c53e54353f21de to your computer and use it in GitHub Desktop.
Save GigaOrts/32b5e12bb5b88dc394c53e54353f21de to your computer and use it in GitHub Desktop.
Domashka 6 Основы программирования
using System;
namespace domashka
{
class Program
{
static void Main(string[] args)
{
int totalPictures = 52;
int maxPicturesInRow = 3;
Console.WriteLine($"Всего картинок: {totalPictures}");
Console.WriteLine($"Картинок в ряд: {maxPicturesInRow}");
int numberOfRows = totalPictures / maxPicturesInRow;
Console.WriteLine($"\nКоличество рядов из {maxPicturesInRow} картинок: {numberOfRows}");
int extraPictures = totalPictures % maxPicturesInRow;
Console.WriteLine($"Лишних картинок: {extraPictures}");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment