kwest87

Untitled

Dec 22nd, 2023
1,223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 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 ConsoleApp4
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int albumPictures = 52;
  14.             int rowPictures = 3;
  15.             int filledRow;
  16.             int extraPictures;
  17.  
  18.             filledRow = albumPictures / rowPictures;
  19.             extraPictures = albumPictures % rowPictures;
  20.  
  21.             Console.WriteLine($"{filledRow} рядов заполнены картинками , {extraPictures} картинок осталось.");
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment