안녕하세요 자바칩 프라푸치노입니다. 오늘은 자바에서 연산자에서 이항 연산자 중에 산술 연산자를 실습해보겠습니다. 매우매우 쉬움 주의! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 package sec01_exam; public class AriOpEx { public static void main(String[] args) { int v1 = 5; int v2 = 2; int result = v1 + v2; System.out.println(result);// 7 result = v1 - v2; System.out.println(result);//3 result = v1 * v2..