자바 문제 변수 , 식별자 자료형 상수 을 알고싶으면자바 예약어(Keyword) , 식별자, 변수 , 자료형, 상수 Java step2 3항연산 public class Main { public static void main(String[] args) { System.out.println("Hello Would!!"); int x = 10; int y = 10; System.out.println(max(x, y)); } static int max(int a, int b) { int result = (a == b) ? a : b; // 조건이 사실이면 a 아니면 b return result; } } 연산 // 연산 덧셈 뺄샘 나눗셈 곱하기 public class Main { public static void..