Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace _11.Cinema
- {
- class Program
- {
- static void Main(string[] args)
- {
- string projekciq = Console.ReadLine();
- double row = double.Parse(Console.ReadLine());
- double column = double.Parse(Console.ReadLine());
- double siting = row * column;
- if (projekciq == "Premiere")
- {
- //тук на бъгва заради това че конкатенираш резултата със стринг
- //и след това се опитваш да изкараш 2 числа след
- //десетичната запетая на един текст.
- //когато имаш (нещо си) + (string) цялото става стринг
- // |
- // V
- Console.WriteLine("{0:f2} Leva", siting * 12.0);
- }
- else if (projekciq == "Normal")
- { //тук е същото
- Console.WriteLine("{0:f2} Leva", siting * 7.5);
- }
- else if (projekciq == "Discount")
- { //тук е същото
- Console.WriteLine("{0:f2} Leva", siting * 5.0);
- }
- else
- {
- Console.WriteLine("error");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement