728x90
package ch01_variable_operator;
public class CondOper01 {
public static void main(String[] args) {
// 최대값 변수 이름 : max
int x = 3 ,y = 8 , z = 4 ;
int max = x >= y ? x : y ;
max = y >= z ? y : z ;
max = y >= (x + z) ? y : z ;
System.out.println("최대 수 : " + max);
}
}
cf ) Myjava/CondOper01.java at master · nolooker/Myjava (github.com)
728x90
반응형
'console.log("What ? " + Cord); > Java' 카테고리의 다른 글
<Git> ErrorDebug.java (0) | 2023.02.02 |
---|---|
<Git> Condition02.java (0) | 2023.02.02 |
<Git> CondOper.java (0) | 2023.02.02 |
<Git> Casting.java (0) | 2023.02.02 |
<Git> ArithmeticOperator2.java (0) | 2023.02.02 |