Advertisement
Montagne94

4. Картинки

Mar 14th, 2023 (edited)
478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. public class Program
  2. {
  3.     private static void Main(string[] args)
  4.     {
  5.         int allImages = 52;
  6.         int imagesOfRow = 3;
  7.  
  8.         int filledRows = allImages / imagesOfRow;
  9.         int imagesOverRows = allImages % imagesOfRow;
  10.  
  11.         Console.WriteLine($"Полностью заполненных рядов {filledRows}");
  12.         Console.WriteLine($"Картинок сверх меры {imagesOverRows}");
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement