Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace YardGreening
- {
- class Program
- {
- static void Main(string[] args)
- {
- double totalPrice, discontPrice, totalArrea;
- totalArrea = double.Parse(Console.ReadLine());
- totalPrice = totalArrea * 7.61 * .82;
- discontPrice = totalArrea * 7.61 * .18;
- Console.WriteLine($"The finsl price is: {totalPrice} lv.");
- Console.WriteLine($"The discont is: {discontPrice} lv.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement