maus234

Untitled

Aug 13th, 2021
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.77 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.  
  15.             int numberOfPictures = 3;
  16.  
  17.             Console.WriteLine("Сколько у вас в альбоме картинок?");
  18.  
  19.             int picturesInAlbum = Convert.ToInt32(Console.ReadLine());
  20.  
  21.             double bustingpictures = picturesInAlbum % numberOfPictures;
  22.  
  23.             int numberOfRows = picturesInAlbum / numberOfPictures;
  24.  
  25.             Console.WriteLine("лишнее картинки" + " " + bustingpictures);
  26.  
  27.             Console.WriteLine("количество рядов" + " " + numberOfRows);
  28.  
  29.  
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment