Advertisement
Guest User

Picture

a guest
Feb 29th, 2020
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.58 KB | None | 0 0
  1. namespace _Picture
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.            
  8.             int picture = 52; // кол-во картинок
  9.             int picSiries = 3; // картинок в ряду
  10.             int fillSeries = picture / picSiries; // заполненных рядов
  11.             int balance = picture % picSiries; // картинок сверх меры
  12.  
  13.             Console.WriteLine($"Полностью заполненных рядов: {fillSeries}, картинок сверх меры: {balance}");
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement