Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace MovieProfit
- {
- class Program
- {
- static void Main(string[] args)
- {
- string movie = Console.ReadLine();
- int days = int.Parse(Console.ReadLine());
- int ticket = int.Parse(Console.ReadLine());
- double price = double.Parse(Console.ReadLine());
- int percent = int.Parse(Console.ReadLine());
- double sum = days * ticket * price;
- Console.WriteLine($"The profit from the movie {movie} is {sum - sum * percent / 100:F2} lv.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement