mattnguyen

Untitled

Feb 6th, 2021
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FirstProject
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9.  
  10. int price = int.Parse(Console.ReadLine());
  11. double price1 = price * 7.61;
  12. double discount = 0.18 * price1;
  13. double finalprice = price1 - discount;
  14.  
  15. Console.WriteLine ($"The final price is: {finalprice} lv.");
  16. Console.WriteLine($"The discount is: {discount} lv.");
  17.  
  18. }
  19. }
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment