Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Hw3
- {
- class Program
- {
- static void Main()
- {
- int photosInTheAlbum = 52;
- int numberOfPhotosInARow = 3;
- int fullFilledRows = photosInTheAlbum / numberOfPhotosInARow;
- int overflowPhotos = photosInTheAlbum % numberOfPhotosInARow;
- Console.WriteLine($"Всего полностью заполненных рядов: {fullFilledRows}.");
- Console.WriteLine();
- Console.WriteLine($"Картинок сверх меры: {overflowPhotos}.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement