Advertisement
Legiomax

C#_1_lesson_images

Jan 2nd, 2024 (edited)
1,080
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.72 KB | Software | 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 C_Ijun
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int countImagesInLine = 3;
  14.             int countImages = 55;
  15.             int countImagesFullLine = countImages / countImagesInLine;
  16.             int countImagesOverLimit = countImages % countImagesInLine;
  17.             Console.WriteLine("Количество полностью заполненных рядов картинками будет: " +
  18.             countImagesFullLine + ". Сверх меры: " + countImagesOverLimit + ".");
  19.             Console.ReadLine();
  20.         }
  21.     }
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement