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 Leson01
- {
- class Program
- {
- static void Main(string[] args)
- {
- int picturesInARow = 3;
- Console.WriteLine("Сколько у вас в альбоме картинок?");
- int picturesInAlbum = Convert.ToInt32(Console.ReadLine());
- double extraPictures = picturesInAlbum % picturesInARow;
- int numberOfRows = picturesInAlbum / picturesInARow;
- Console.WriteLine("лишнее картинки" + " " + extraPictures);
- Console.WriteLine("количество рядов" + " " + numberOfRows);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment