대입, 삼항 연산자 예제
public class OtherTest {
public static void main(String[] args) {
// SWAP 연산, 대입연산
int a=10;
int b=20;
int temp;
temp=a;
a=b;
b=temp;
System.out.println("a의 값은 : "+a);
System.out.println("b의 값은 : "+b);
int number = 100;
// 삼항연산
String result = number%3==0 ?"3의 배수이다.":"3의 배수가 아니다";
System.out.println(result);
}
}