Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _09.YardGreening
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- double sizeFor = double.Parse(Console.ReadLine());
- double price1 = sizeFor * 7.61;
- double discount = price1 * 0.18;
- Console.WriteLine($"The final price is: {price1 - discount} lv.");
- Console.WriteLine($"The discount is: {discount} lv.");
- }
- }
- }
Add Comment
Please, Sign In to add comment