码迷,mamicode.com
首页 > 其他好文 > 详细

嵌套和级连的判断

时间:2016-07-30 08:02:37      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

package hello;

import java.util.Scanner;

public class hello {

public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int a;
int b;
int c;
int z;
a = in.nextInt();
b = in.nextInt();
c = in.nextInt();
if(a>b){
if(a>c){
z = a;
}
else{
z = c;
}
}
else{
if(b>c){
z = b;
}
else{
z = c;
}
}
System.out.println(z);


}

}

-------------------------------------------------

技术分享

技术分享

 

规则。

 

嵌套和级连的判断

标签:

原文地址:http://www.cnblogs.com/jy627625/p/5720135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!