다음 Java 프로그램에서 빈칸에 들어갈 키워드를 쓰시오.
출력: positive
public class Test {
public static void main(String[] args) {
System.out.print(Test.check(1));
}
( ) String check(int num) {
return (num >= 0) ? "positive" : "negative";
}
}이 문제는 풀이 화면에서 직접 실행해 풀 수 있어요.
꿈라CBT