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 Homework1_4
- {
- class Program
- {
- static void Main(string[] args)
- {
- int picturesInRow = 3;
- int pictures = 52;
- int rowsFilled = pictures / picturesInRow;
- int remainingPictures = pictures % picturesInRow;
- Console.WriteLine($"Полностью заполненных рядов можно будет вывести: {rowsFilled}," +
- $" а картинок будет сверх меры: {remainingPictures}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement