Advertisement
marto9119

Untitled

Jan 7th, 2023
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.80 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace MyApp
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double w = double.Parse(Console.ReadLine());
  10.             double h = double.Parse(Console.ReadLine());
  11.             if (3 <= h)
  12.             {
  13.                 if (h <= w)
  14.                 {
  15.                     if (w <= 100)
  16.                     {
  17.                         double smW = (w * 100);
  18.                         double smH = ((h * 100) - 100);
  19.                         int placeW = (int)Math.Round(smW / 120);
  20.                         int placeH = (int)Math.Round(smH / 70);
  21.                         int allPlace = (placeH * placeW) - 3;
  22.  
  23.                         Console.WriteLine(allPlace);
  24.                     }
  25.  
  26.                 }
  27.             }
  28.         }
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement