Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp19
- {
- class Program
- {
- static void Main(string[] args)
- {
- string type = Console.ReadLine();
- int row = int.Parse(Console.ReadLine());
- int col = int.Parse(Console.ReadLine());
- double income = 0.0;
- if (type == "Premiere")
- {
- income = row * col * 12;
- }
- else if (type == "Normal")
- {
- income = row * col * 7.5;
- }
- else
- {
- income = row * col * 5;
- }
- Console.WriteLine($"{income:F2} leva");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment