public static void Main()
Console.WriteLine("введите первое число");
a = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("введите оператор");
d = Convert.ToChar(Console.ReadLine());
Console.WriteLine("введите второе число");
b = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("сумма = {0}", c);
Console.WriteLine("вычитание = {0}", c);
Console.WriteLine("умножение = {0}", c);
Console.WriteLine("деление = {0}", c);
Console.WriteLine("Неизвестный оператор.");
Console.WriteLine("неверный формат");