Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [StartCode]
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApp9
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int albumPictures = 52;
- int fullRow;
- int extraPictures;
- int rowSize = 3;
- fullRow = albumPictures / rowSize;
- Console.WriteLine(fullRow + " полностью заполненых рядов фотографиями.");
- extraPictures = albumPictures % rowSize;
- Console.WriteLine(extraPictures + " картинок сверх меры.");
- }
- }
- }
- [EndCode]
Advertisement
Add Comment
Please, Sign In to add comment