012 判斷語句

TSulid發表於2020-12-20

第二章 判斷語句

判斷結構 也叫判斷語句 也叫選擇結構
1.判斷語句if
if(關係表示式){
	語句體;
}

在這裡插入圖片描述

main{
	int age = 16;
    if(age>=18){
        可以去網咖.sout;
    }
    回家吃飯.sout;
}
2.判斷語句 if else
if(關係表示式){
	語句體1;
} else {
	語句體2;
}

在這裡插入圖片描述

public static void main(String[] args){
	int n=13;
    if(n%2==0){
        偶數.sout;
    } else {
    	奇數.sout;
    }
}
標準的if else語句
3.判斷語句 if…else if…else if…else
if(判斷條件1){
	語句體1;
} else if(判斷條件2) {
	語句體2;
...
} else{
    語句體3;
}

在這裡插入圖片描述

public static void main(String[] args){
	int x =10;
    int y;
    if(x>=3){
        y=2*x+1;
    } else if(x>-1&&x<3){
        y=2*x;
    } else {
        y=2*x-1;
    }
    y.sout;
}

相關文章