실행 실패 (제출 코드 컴파일 에러)
Main.java:37: error: incompatible types: char cannot be converted to String String first = num.charAt(0); ^ Main.java:38: error: incompatible types: char cannot be converted to String String second = num.charAt(0); ^ Main.java:39: error: incompatible types: char cannot be converted to String String third = num.charAt(0); ^ Main.java:42: error: bad operand types for binary operator '==' if (first == '0' || second == '0' || third == '0') return false; ^ first type: String second type: char Main.java:42: error: bad operand types for binary operator '==' if (first == '0' || second == '0' || third == '0') return false; ^ first type: String second type: char Main.java:42: error: bad operand types for binary operator '==' if (first == '0' || second == '0' || third == '0') return false; ^ first type: String second type: char 6 errors
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
비공개 코드입니다. 코드 작성자만 볼 수 있습니다.
반례를 발견하지 못했습니다.