本帖最后由 sbeeqnui1987 于 2012-6-19 21:45 编辑
class Condition
{
public static void main(String args[])
{
int x,serial,y;
y=0;
x=Integer.parseInt(args[2]);
serial=Integer.parseInt(args[3]);
if(x>50)
y=x*serial;
System.out.println("y="+y);
}
}
得出的结果总是:Exception in thead "main"java.lang.ArrayLndexOutOfBoundsException:2 at Condition.main<Condition.java:7>
为什么? |