Advertisement
NikaBang

Картинки

May 12th, 2024
419
0
18 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using System;
  2.  
  3. internal class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         int countImages = 52;
  8.         int imagesInRow = 3;
  9.         int countRow;
  10.         int remainderImages;
  11.  
  12.         countRow = countImages / imagesInRow;
  13.         remainderImages = countImages % imagesInRow;
  14.  
  15.         Console.WriteLine($"заполненных рядов - {countRow}, картинок сверх меры - {remainderImages}.");
  16.         Console.ReadKey();
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement