Advertisement
AziLif

Картинки

May 24th, 2024
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 KB | None | 0 0
  1. namespace ConsoleApp
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             int pictures = 52;
  8.             int numberOfPicturesInALine = 3;
  9.             int linesFilledWithPictures;
  10.             int numberOfPicturesOutsideTheLine;
  11.  
  12.             linesFilledWithPictures = pictures / numberOfPicturesInALine;
  13.             numberOfPicturesOutsideTheLine = pictures % numberOfPicturesInALine;
  14.  
  15.             Console.WriteLine($"Всего заполненных линий будет {linesFilledWithPictures}. А вне линий будет {numberOfPicturesOutsideTheLine} картинка.");
  16.         }
  17.     }
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement