Vlad_Savitskiy

Rows

Apr 1st, 2020
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.50 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CSLightFirst
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             int picturesCount = 52;
  10.             int picturesInRow = 3;
  11.             int rowCount = picturesCount / picturesInRow;
  12.             int remainingPictures = picturesCount % picturesInRow;
  13.  
  14.             Console.WriteLine($"Заполненных рядов: {rowCount}\n" +
  15.                               $"Картинок сверх меры: {remainingPictures}");
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment