Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Курсы
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. int pictures = 52;
  14. int row = 3;
  15. int fullRow = 52 / 3;
  16. int excessPictures = 52 % 3; // с английским беда если что)
  17. Console.WriteLine($"Количество полных рядов:{fullRow}");
  18. Console.WriteLine($"Количество лишних картинок: {excessPictures}");
  19.  
  20.  
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement