Advertisement
PRO100LY4UK

1.6

Aug 15th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp5
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int pictures = 52;
  10.             int pictInRow = 3;
  11.             int fullRows;
  12.             int extraPictures;
  13.             string text;
  14.  
  15.             fullRows = pictures / pictInRow;
  16.             extraPictures = pictures % pictInRow;
  17.             text = "Можно вывести " + fullRows + " полных рядов картинок и " + extraPictures + " картинок будут лишними.";
  18.             Console.WriteLine(text);
  19.            
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement