kisame1313

Task 1.3.5.3

Jul 11th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace Task_1_3_5_3
  6.     {
  7.     class Program
  8.         {
  9.         static void Main()
  10.             {
  11.             int images = 52;
  12.             int imagesInRow = 3;
  13.  
  14.             Console.WriteLine("Получится " +(images/imagesInRow) + " целых рядов и останется "
  15.                 + (images%imagesInRow) + " изображений");
  16.             }
  17.         }
  18.     }
Advertisement
Add Comment
Please, Sign In to add comment