SnowPhoenix347

1.5 Переменные

Oct 23rd, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Cslight15
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int numberOfPictures = 52;
  14.             int range = 3;
  15.             int numberOfRange = numberOfPictures / range;
  16.             int excessPictures = numberOfPictures % range;
  17.  
  18.             Console.WriteLine ($"Кол-во рядов: {numberOfRange}");
  19.             Console.WriteLine($"Кол-во картинок сверх меры: {excessPictures}");
  20.         }
  21.     }
  22. }
Add Comment
Please, Sign In to add comment