SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
52
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- using System;
- public class Program
- {
- public static void Main()
- {
- var type = Console.ReadLine().ToLower();
- var r = int.Parse(Console.ReadLine());
- var c = int.Parse(Console.ReadLine());
- var price = 0.0;
- if (type == "premiere")
- {
- price = 12.00;
- }
- else if (type == "normal")
- {
- price = 7.50;
- }
- else if (type == "discount")
- {
- price = 5.00;
- }
- Console.WriteLine("{0:f2} ", (c * r) * price);
- }
- }
RAW Paste Data

