maus234

Untitled

Aug 14th, 2021
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.74 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 Leson01
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.             int picturesInARow = 3;
  15.             Console.WriteLine("Сколько у вас в альбоме картинок?");
  16.             int picturesInAlbum = Convert.ToInt32(Console.ReadLine());
  17.             double extraPictures = picturesInAlbum % picturesInARow;
  18.             int numberOfRows = picturesInAlbum / picturesInARow;
  19.             Console.WriteLine("лишнее картинки" + " " + extraPictures);
  20.             Console.WriteLine("количество рядов" + " " + numberOfRows);
  21.  
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment