Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace BirthdayParty
- {
- class Program
- {
- static void Main(string[] args)
- {
- double rent = double.Parse(Console.ReadLine()),
- cake = rent / 5,
- drinks = cake * 0.55,
- animator = rent / 3;
- Console.WriteLine(rent + cake + drinks + animator);
- }
- }
- }
Add Comment
Please, Sign In to add comment