if...else语句求三个数的最大值
求三个整数最大值
class Max{
public static void main(String[] args) {
//求三个整数最大值
int a=1,b=2,c=3;
if(a>b){
if(a>c){
System.out.println(a);
}else{
System.out.println(c);
}
}else{
if(b>c){
System.out.println(b);
}else{
System.out.println(c);
}
}
}
}
原文作者:翟昭
原文地址: https://blog.csdn.net/weixin_47062057/article/details/107813073
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/weixin_47062057/article/details/107813073
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
相关文章