Advertisement
TwinFrame

Clight_04_ImagesInRow

Mar 7th, 2023 (edited)
575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.52 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Clight_04
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             int numberImages = 52;
  10.             int numberImagesInRow = 3;
  11.             int numberRows;
  12.             int remainsImages;
  13.  
  14.             numberRows = numberImages / numberImagesInRow;
  15.             remainsImages = numberImages % numberImagesInRow;
  16.  
  17.             Console.WriteLine($"Количество рядов по {numberImagesInRow} картинки(-ок): " + numberRows);
  18.             Console.WriteLine("Количество оставшихся картинок: " + remainsImages);
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement