判断语句的嵌套和switch判断

Scanner scanner = new Scanner(System.in);
int i = scanner.nextInt();
int i2 = scanner.nextInt();
if (i>i2){
System.out.println("大"+i);
}else{
System.out.println("大"+i2);
}
在这段代码中用户输入了两个数值,然后使用了判断语句判断大小,然后把大的输出出来
那如果我们有三个数字呢我们要判断三个数找到最大的数,那么他们三个数字之前的关系会怎么样呢
我们去判断的时候一次只可以判断两个数字
if (x>y){
if (x>z){
System.out.println("Da"+x);
}else{
System.out.println("da"+z);
}
}else{
if(y>z){
System.out.println(y);
}
else{
System.out.println(z);
}
}
在这里我们就使用到了循环嵌套,在第一个循环中判断了x和y,嵌套循环中再让大的一方和z比较
嵌套的判断
当if的条件满足或不满足的时候要执行的yu'ju也是i条if或if else语句这就是循环嵌套

switch
switch (x){
case 1:
System.out.println("早上好");

case 2:
System.out.println("中午好");

case 3:
System.out.println("晚上好");
default:
System.out.println("?什么");
}
switch是选择判断语句,如上代码,在switch中呢传入了一个变量x
他会根据表达式的结果寻找匹配的case,并执行case中的语句
比如如果x为1就会执行case1:后面的语句就会打印出一句话早上好
如果所有的case都不匹配,那么他就会执行
default后的语句,如果没有default他就什么都不会做
posted @ 2022-06-08 14:30  我滴妈老弟  阅读(143)  评论(0编辑  收藏  举报