Advertisement
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 HomeWorck_3_1
- {
- class Program
- {
- static void Main(string[] args)
- {
- int rowPictures = 3;
- int totalPictures = 52;
- int fullRowPictures;
- int extraPictures;
- fullRowPictures = totalPictures / rowPictures;
- extraPictures = totalPictures % rowPictures;
- Console.WriteLine($"Полность заполненых рядов будет: {fullRowPictures}. Картинок сверх меры будет: {extraPictures}.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement