面试题答案
一键面试using System;
class Program
{
static void Main()
{
int a = 5;
int b = 3;
int c = 4;
if (a > b)
{
if (a > c)
{
Console.WriteLine("a是最大的");
}
else
{
Console.WriteLine("c是最大的");
}
}
else
{
if (b > c)
{
Console.WriteLine("b是最大的");
}
else
{
Console.WriteLine("c是最大的");
}
}
}
}