AdemDev

Задание 4. Картинки

Aug 28th, 2023 (edited)
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp
  4. {
  5. internal class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int countImages = 52;
  10. int rowLength = 3;
  11.  
  12. int filledRowsCount = countImages / rowLength;
  13. int extraImages = countImages % rowLength;
  14.  
  15. string report = $"Количество полностью заполненных рядов - {filledRowsCount}. Количество оставшихся картинок - {extraImages}";
  16. Console.WriteLine(report);
  17. }
  18. }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment