Advertisement
KirillKorobka

Untitled

Nov 30th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. namespace ConsoleApp2
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. Console.WriteLine("Enter the height in pixels");
  8. int height = int.Parse(Console.ReadLine());
  9. Console.WriteLine("Enter the width in pixels");
  10. int width = int.Parse(Console.ReadLine());
  11. int rectangle = 80 * 80;
  12. Console.WriteLine(height * width / rectangle + " whole rectangles");
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement