public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);//请问这句咋理解?这创建个对象,括号里咋还有东西?
System.out.println;
int score = sc.nextInt();
int y = intA(score);
System.out.println("y="+y);
}
public static int intA(int x){
int y = 0;
if(x>0){
y = x + 3;
}
else if(x==0){
y = 0;
}
else{
y = x*x-1;
}
return y;
}
}作者: forTomorrow 时间: 2015-6-11 10:25
参数啊,代表键盘输入流,你看下API,查找下Scanner这个类作者: lucien_he 时间: 2015-6-11 11:09
一、System.in
Java在java.lang.System类中声明了3个常量in、out、err,用于实现标准输入/输出功能。 声明如下:
public final class System extends Object { public final static InputStream in = nullInputStream(); //standard input constant public final static PrintStream out = nullPrintStream(); //standard output constant public final static PrintStream err = nullPrintStream(); //standard error output constant }
InputStream类的read()方法可以从键盘接收数据,PrintStream类的print()和println()方法可以向屏幕输出数据。
由于read()方法声明要抛出IOException异常,调用它的函数要处理该异常。 实例: