voldmaks

Картинки

Feb 20th, 2020
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.72 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 Задание_5
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int totalPictures = 52;
  14.             int picturesInARow = 3;
  15.             int numberOfRowsReceived;
  16.             int numberOfExtraPictures;
  17.  
  18.             numberOfRowsReceived = totalPictures / picturesInARow;
  19.             numberOfExtraPictures = totalPictures % picturesInARow;
  20.  
  21.             Console.WriteLine($"Количество полученных рядов {numberOfRowsReceived}. Количество лишних картинок {numberOfExtraPictures}");
  22.         }
  23.     }
  24. }
Add Comment
Please, Sign In to add comment