Advertisement
Spocoman

09. Fish Tank

Nov 15th, 2021 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.82 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FishTank
  4.  
  5. {
  6.     class Program
  7.     {
  8.         static void Main()
  9.         {
  10.             int length = int.Parse(Console.ReadLine());
  11.             int width = int.Parse(Console.ReadLine());
  12.             int height = int.Parse(Console.ReadLine());
  13.             double percentage = double.Parse(Console.ReadLine());
  14.  
  15.             double liters = length * width * height * (100 - percentage) / 100000;
  16.        
  17.             Console.WriteLine(liters);
  18.         }
  19.     }
  20. }
  21.  
  22. Лоша практика:
  23.  
  24. using System;
  25.  
  26. namespace FishTank
  27.  
  28. {
  29.     class Program
  30.     {
  31.         static void Main()
  32.         {
  33.             Console.WriteLine(int.Parse(Console.ReadLine()) * int.Parse(Console.ReadLine()) * int.Parse(Console.ReadLine()) * (100 - double.Parse(Console.ReadLine())) / 100000);
  34.         }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement