Last active
August 25, 2025 10:52
-
-
Save Attosius/99fd2f71aa249124e2540052b92d175d 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
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