2个回答
展开全部
public int bijiao(int a, int b, int c)
{
//用来保存最大的数
int max;
//判断a和b中谁比较大 并把较大的赋值给max
max=a>b?a:b;
//判断max和c中谁比较大 并把较大的赋值给max
max=max>c?max:c;
//将最大值返回
return max;
}
{
//用来保存最大的数
int max;
//判断a和b中谁比较大 并把较大的赋值给max
max=a>b?a:b;
//判断max和c中谁比较大 并把较大的赋值给max
max=max>c?max:c;
//将最大值返回
return max;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Test {
public int getMax(int a, int b, int c) {
return Math.max(Math.max(a, b), c);
}
public static void main(String[] args) {
Test t = new Test();
System.out.println(t.getMax(2, 67, 8));
}
}
public int getMax(int a, int b, int c) {
return Math.max(Math.max(a, b), c);
}
public static void main(String[] args) {
Test t = new Test();
System.out.println(t.getMax(2, 67, 8));
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询