○ 연산자변수 = 수식1. 단항연산자 + - 부호 ++ -- 증감 !(not) (형변환)2. 산술연산자 * / %(나머지) + -3. 비교(관계)연산자 > >= intbyte, short, char, int, long 연산자 long => long byte, short, char, int, long, float 연산자 float => float byte, short, char, int, long, float, double 연산자 double => double ○ 예제 소스// 산술연산자int a = 5, b = 2;// 5 / 2 => 2 정수형/정수형=정수형System.out.println("나눈결과" + a/b); // 2 // 5..