Advertisement
IvanOseledko

Homework3

Aug 29th, 2023 (edited)
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Hw3
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             int photosInTheAlbum = 52;
  10.             int numberOfPhotosInARow = 3;
  11.  
  12.             int fullFilledRows = photosInTheAlbum / numberOfPhotosInARow;
  13.             int overflowPhotos = photosInTheAlbum % numberOfPhotosInARow;
  14.  
  15.             Console.WriteLine($"Всего полностью заполненных рядов: {fullFilledRows}.");
  16.             Console.WriteLine();
  17.             Console.WriteLine($"Картинок сверх меры: {overflowPhotos}.");
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement