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 numberOfPictures = 3;
- Console.WriteLine("Сколько у вас в альбоме картинок?");
- int picturesInAlbum = Convert.ToInt32(Console.ReadLine());
- double bustingpictures = picturesInAlbum % numberOfPictures;
- int numberOfRows = picturesInAlbum / numberOfPictures;
- Console.WriteLine("лишнее картинки" + " " + bustingpictures);
- Console.WriteLine("количество рядов" + " " + numberOfRows);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment