Advertisement
Montagne94

4. Картинки

Jan 7th, 2025 (edited)
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace HomeWork
  4. {
  5.     internal class Program
  6.     {
  7.         public static void Main(string[] args)
  8.         {
  9.             int totalPictures = 52;
  10.             int picturesInRow  = 3;
  11.  
  12.             int filledRows = totalPictures / picturesInRow;
  13.             int extraPictures = totalPictures % picturesInRow;
  14.  
  15.             Console.WriteLine("Заполненные ряды: " + filledRows);
  16.             Console.WriteLine("Лишние картинки: " + extraPictures);
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement