Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace CSLightFirst
- {
- class Program
- {
- static void Main()
- {
- int picturesCount = 52;
- int picturesInRow = 3;
- int rowCount = picturesCount / picturesInRow;
- int remainingPictures = picturesCount % picturesInRow;
- Console.WriteLine($"Заполненных рядов: {rowCount}\n" +
- $"Картинок сверх меры: {remainingPictures}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment