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