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 ConsoleApp4
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int albumPictures = 52;
- int rowPictures = 3;
- int filledRow;
- int extraPictures;
- filledRow = albumPictures / rowPictures;
- extraPictures = albumPictures % rowPictures;
- Console.WriteLine($"{filledRow} рядов заполнены картинками , {extraPictures} картинок осталось.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment