用C# 求三个整数的最大值 编写一个程序,使用条件运算符求用户输入的三个整数中的最大值。

2025-01-01 08:29:45
推荐回答(3个)
回答1:

int a=Int32.Parse(FirstOperand.Text);
int b=Int32.Parse(SecondOperand.Text);
int c=Int32.Parse(TirchdOperand.Text);
//以下可在Button控件下输入(双击Button)
if(a<=b)
{if(b<=c)Console.Write("最大值为"+c);
else Console.Write("最大值为"+b);
}
else
{ if(a<=c)Console.Write("最大值为"+c);
else Console.Write("最大值为"+a);
}
FirstOperand;SecondOperand;TirchdOperand为自建的TextBox控件
我没运行试试吧……

回答2:

赚钱鲁过

回答3:

int max(int a,int b,int c){
(a>b)?b=a:b=b;
(b>c)?return b:return c;
}