C# So the programm assaigns the first double x with console.read() but the y and the Ă double are just not excuted. Whats wrong?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Calculator {class Program   { static void Main(string[] args)     { double x;       double Ă;       double y;       bool b = false; Console.WriteLine("Calculator"); Console.WriteLine("Paste the first number");       x = Console.Read(); Console.WriteLine("Chose youre Symbol <0 = +> <1 = -> <2 = *> <3 = />");       à = Console.Read(); Console.WriteLine("Paste the last number"); y = Console.Read();  if (Ă == 0)            { Console.Write(x + y);                b = true; } if (Ă == 1)            { Console.Write(x - y);               b = true; } if (Ă == 2)            { Console.Write(x * y);                b = true; } if (Ă == 3)            { Console.Write(x / y);                b = true;} //Check if the number for Ă was correct if (b == false)            {Console.Write("Error");}}}} //Sorry for my english