Advertisement
IGRODELOFF

Task3

Mar 1st, 2022 (edited)
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.93 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 Task3
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int picturesCount;
  14.             int seriesCount;
  15.             int picturesInSeries = 3;
  16.             int picturesBeyondMeasure;
  17.  
  18.             Console.Write("Введите количество картинок, имеющихся у вас в данный момент: ");
  19.             picturesCount = Convert.ToInt32(Console.ReadLine());
  20.             seriesCount = picturesCount / picturesInSeries;
  21.             picturesBeyondMeasure = picturesCount % picturesInSeries;
  22.             Console.WriteLine("У вас будет выведенно " + seriesCount + " полностью заполненных рядов и " + picturesBeyondMeasure + " картинки сверх меры.");
  23.         }
  24.     }
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement