私はプログラミングの初心者ですが、ここで何が間違っているのか本当に疑問に思っています:
static void Main(string[] args)
{
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
int c = int.Parse(Console.ReadLine());
if ((a > b) && (a > c))
{
Console.WriteLine(a);
}
else
{
if ((b > a) && (b > c)) ;
{
Console.WriteLine(b);
}
else
{
Console.WriteLine(c);
}
}
}