Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace ConsoleApp
- {
- class Program
- {
- static void Main(string[] args)
- {
- int pictures = 52;
- int numberOfPicturesInALine = 3;
- int linesFilledWithPictures;
- int numberOfPicturesOutsideTheLine;
- linesFilledWithPictures = pictures / numberOfPicturesInALine;
- numberOfPicturesOutsideTheLine = pictures % numberOfPicturesInALine;
- Console.WriteLine($"Всего заполненных линий будет {linesFilledWithPictures}. А вне линий будет {numberOfPicturesOutsideTheLine} картинка.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement