/* package whatever; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class time
{
int h,m,sec;
void getdata()throws IOException
{ /*Scanner in = new Scanner(System.in);`
h=in.nextInt();
m= in.nextInt();
s=in.nextInt();*/
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s= br.readLine();
String str[] = s.split(" ");
h=Integer.parseInt(str[0]);
m=Integer.parseInt(str[1]);
sec=Integer.parseInt(str[2]);
}
int calc_time(time t1,time t2)
{ return ((t2.h - t1.h)*3600 + (t2.m - t1.m)*60 + (t2.sec - t1.sec));
}
public static void main (String[] args) throws java.lang.Exception
{
// your code goes here
time t = new time();
t.getdata();
time te = new time();
te.getdata();
time tt = new time();
int val = tt.calc_time(t,te);
if(val>=0&&val<=99) System.out.println("S");
else if(val>99&&val<=199) System.out.println("C");
else if(val>199 && val<=299) System.out.println("S");
else if(val>299 && val<=399) System.out.println("C");
}
}
我在Ideone上遇到这个特定程序的运行时错误,虽然它在我的电脑上完美运行。 它表示split函数的错误和第二个对象的getdata()函数调用。
答案 0 :(得分:1)
您已达到STDIN流的结尾,这意味着在运行以下内容之后:
String s = br.readLine();
s
仍为null,这会在以下行中生成NPE:
String str[] = s.split(" ");
要解决此问题,请检查null并执行合理的操作,并为Ideone提供一些输入。此外,每次执行时只应创建一次BufferedReader,如此构思草图所示:http://ideone.com/VtQrxk
相关的javadoc:
public String readLine() 抛出IOException
读取一行文字。一条线被认为是由任何一个换行终止的 ('\ n'),回车符('\ r')或回车符后紧跟换行符。
返回:
包含该行内容的String,不包括任何行终止 字符,如果已到达流的末尾,则为null
http://docs.oracle.com/javase/7/docs/api/java/io/BufferedReader.html#readLine()