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