Advertisement
KirillKorobka

Untitled

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