本帖最后由 杨雯雯 于 2012-12-22 10:24 编辑
class AB{
public static void main(String [ ] args){
long i=0;
try{
i=Integer.parseInt(args[0]);
}catch(Exception e){ }
switch(i)
{case 0: System.out.println("0");
case 1: System.out.println("1");
default : System.out.println("default"); }
}
}
错在哪里了呀?各位大虾帮忙看看 |