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