Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace C_Ijun
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int countImagesInLine = 3;
- int countImages = 55;
- int countImagesFullLine = countImages / countImagesInLine;
- int countImagesOverLimit = countImages % countImagesInLine;
- Console.WriteLine("Количество полностью заполненных рядов картинками будет: " +
- countImagesFullLine + ". Сверх меры: " + countImagesOverLimit + ".");
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement