Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace CSLight
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int images = 52;
- int imagesInOneRow = 3;
- int numberRowsWithImages = images / imagesInOneRow;
- int remainsImages = images % imagesInOneRow;
- Console.WriteLine($"У вас {numberRowsWithImages} рядов");
- Console.WriteLine($"И остаток: {remainsImages}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement