Advertisement
desislava_topuzakova

09. Yard Greening

Jun 4th, 2022
1,370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp1
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double size = double.Parse(Console.ReadLine());
  10.             double withoutDiscount = size * 7.61;
  11.             double discount = withoutDiscount * 0.18;
  12.             Console.WriteLine($"The final price is: {withoutDiscount - discount} lv.");
  13.             Console.WriteLine($"The discount is: {discount} lv.");
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement