5. 다음 코드의 실행결과는 무엇일까요?
public class Main { public static void main(String[] args) { int a = 1; char b = '1'; int c = a + b; System.out.println(c); } }
실행결과
정답 확인