Advertisement
Spocoman

05. Supplies for School

Nov 16th, 2021 (edited)
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.57 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SuppliesForSchool
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             double penPrice = 5.80;
  10.             double markerPrice = 7.20;
  11.             double detergentPrice = 1.20;
  12.  
  13.             int penCount = int.Parse(Console.ReadLine());
  14.             int markerCount = int.Parse(Console.ReadLine());
  15.             int detergentCount = int.Parse(Console.ReadLine());
  16.             double discount = int.Parse(Console.ReadLine());
  17.  
  18.             double totalPrice = (1 - discount / 100) * (penCount * penPrice + markerCount * markerPrice + detergentCount * detergentPrice);
  19.  
  20.             Console.WriteLine(totalPrice);
  21.         }
  22.     }
  23. }
  24.  
  25. Леко тарикатската:
  26.  
  27. using System;
  28.  
  29. namespace SuppliesForSchool
  30. {
  31.     class Program
  32.     {
  33.         static void Main()
  34.         {
  35.             double penPrice = int.Parse(Console.ReadLine()) * 5.80;
  36.             double markerPrice = int.Parse(Console.ReadLine()) * 7.20;
  37.             double detergentPrice = int.Parse(Console.ReadLine()) * 1.20;
  38.             double discount = int.Parse(Console.ReadLine());
  39.  
  40.             Console.WriteLine((1 - discount / 100) * (penPrice + markerPrice + detergentPrice));
  41.         }
  42.     }
  43. }
  44.  
  45. Лоша практика:
  46.  
  47. using System;
  48.  
  49. namespace SuppliesForSchool
  50. {
  51.     class Program
  52.     {
  53.         static void Main()
  54.         {
  55.             Console.WriteLine((int.Parse(Console.ReadLine()) * 5.8 + int.Parse(Console.ReadLine()) * 7.2 + int.Parse(Console.ReadLine()) * 1.2) * (1 - double.Parse(Console.ReadLine()) / 100));
  56.         }
  57.     }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement