kwest87

Untitled

Mar 18th, 2022
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.71 KB | None | 0 0
  1. [StartCode]
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ConsoleApp9
  9. {
  10.     internal class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             int albumPictures = 52;
  15.             int fullRow;
  16.             int extraPictures;
  17.             int rowSize = 3;
  18.  
  19.             fullRow = albumPictures / rowSize;
  20.             Console.WriteLine(fullRow + " полностью заполненых рядов фотографиями.");
  21.             extraPictures = albumPictures % rowSize;
  22.             Console.WriteLine(extraPictures + " картинок сверх меры.");
  23.  
  24.         }
  25.     }
  26. }
  27. [EndCode]
Advertisement
Add Comment
Please, Sign In to add comment