답답한 마음에 올려봅니다..
RTE (nonzero return code) 라고 나오는 이유가 뭘까요??
package algo_Mercy;
import java.util.Scanner;
public class Main {
static public void main(String[] args){
Scanner scan = new Scanner(System.in);
int cnt = scan.nextInt();
for(int i=0; i<cnt;i++){
System.out.println("Hello Algospot!");
}
}
}
itsbee
답답한 마음에 올려봅니다..
RTE (nonzero return code) 라고 나오는 이유가 뭘까요??
10년 전