我是SPOJ的新手,刚开始遇到第一个问题,Life, the Universe and Everything 我提交时总是看到编译错误。单击错误链接时,我没有看到任何错误消息。我在系统上看不到任何编译错误。我在IDEONE中看不到任何错误。当我下载我的解决方案时,我看到一个空白的java文件。
我错过了什么?
以下是我的解决方案的示例错误链接
以下是我在java中的代码
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class Main {
public static void main(String[] args) {
try{
BufferedReader buf = new BufferedReader( new InputStreamReader( System.in ));
String line ;
while( (line = buf.readLine()) != null ){
if(!line.equals("42")){
System.out.println(line);
}else{
break;
}
}
}catch(IOException e){
System.out.println(e.toString());
}catch(Exception e){
System.out.println(e.toString());
}
}
}