Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace CatExpenses
- {
- class Program
- {
- static void Main()
- {
- double bedPrice = double.Parse(Console.ReadLine());
- double toilet = double.Parse(Console.ReadLine());
- double food = toilet * 1.25;
- double toys = food / 2;
- double vet = toys * 1.1;
- double sum = (toilet + food + toys + vet) * 12 * 1.05 + bedPrice;
- Console.WriteLine($"{sum:f2}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement