Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp6
- {
- class Program
- {
- static void Main(string[] args)
- {
- int picture = 52;
- int row = 3;
- int rowCount = picture/row;
- int pictureModulo = picture % row;
- Console.WriteLine("Всего рядов:" + rowCount);
- Console.WriteLine("Остаток картин:" + pictureModulo);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment