표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
public class prog { public static void main(String[] args) { Integer num1 = new Integer(7); // 박싱 Integer num2 = new Integer(3); // 박싱 int int1 = num1.intValue(); // 언박싱 int int2 = num2.intValue(); // 언박싱 Integer result1 = num1 + num2; System.out.println(result1); Integer result2 = int1 - int2; System.out.println(result2); int result3 = num1 * int2; System.out.println(result3); } }