Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp2
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int picturesTotal = 52;
  10. int picturesInOneRow = picturesTotal / 3;
  11. int picturesLeft = picturesTotal % 3;
  12.  
  13. Console.WriteLine("В Вашем альбоме: " + picturesInOneRow + " рядов и остаток " + picturesLeft);
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement