Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. using System;
  2.  
  3. namespace CsLightHomeworks
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int imageAmount = 52;
  10.             int imagePerZone = 3;
  11.  
  12.             int fullFillLines = imageAmount / imagePerZone;
  13.             int partFillLines = imageAmount % imagePerZone;
  14.  
  15.             Console.WriteLine($"Полность заполненных рядов будет {fullFillLines}");
  16.             Console.WriteLine($"Картинок сверх меры {partFillLines}");
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement