Advertisement
vvsvvs

Untitled

Apr 8th, 2021
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. using System;
  2.  
  3. namespace YardGreening
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. double totalPrice, discontPrice, totalArrea;
  10.  
  11. totalArrea = double.Parse(Console.ReadLine());
  12.  
  13. totalPrice = totalArrea * 7.61 * .82;
  14. discontPrice = totalArrea * 7.61 * .18;
  15. Console.WriteLine($"The finsl price is: {totalPrice} lv.");
  16. Console.WriteLine($"The discont is: {discontPrice} lv.");
  17. }
  18. }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement