연산자 종류 산술 연산자 : +, -, *, /, % (나머지 연산자) 증감(증가 및 감소) 연산자 : ++, -- 비교 연산자 : == , != , > , = , , >>> ) 비교 연산자 ( = , instanceof ) 등식 연산자 ( == , != ) 비트 연산자 ( & , ^ , | ) 논리 연산자 ( && , || ) 삼항 연산자 ( ? : ) 대입 연산자 ( = , += , -= , *= , /= , %= 등등) Operator3 package operator; public class Operator3 { public static void main(String[] args) { int sum1 = 1 + 2 * 3; // 1 + (2 * 3) int sum2 = (1 +..