출처: https://bumcrush.tistory.com/182 [맑음때때로 여름]

//삼항 연산자
// (조건)?"값1":"값2";  
// 조건이 참이면 값1을, 거짓이면 값2를 대입한다

int number = 0 ;
int i;

i= (number<5)?100:200;                  = 100

 

String str;

str= (number>0)? "양수입니다":"0이거나음수입니다"               = 0이거나음수입니다

 

 

 

 

+ Recent posts