Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Task_1_3_5_3
- {
- class Program
- {
- static void Main()
- {
- int images = 52;
- int imagesInRow = 3;
- Console.WriteLine("Получится " +(images/imagesInRow) + " целых рядов и останется "
- + (images%imagesInRow) + " изображений");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment