public class Demo2 {
public static void main(String[] args) {
int temp,a,b,c;
a=Integer.parseInt(args[0]);
b=Integer.parseInt(args[1]);
c=Integer.parseInt(args[2]);
if (a>=b && a>=c)
{
temp=a;
}else if(!(b<a) && !(b<c))
{
temp=b;
}else
{
temp=c;
}
System.out.println("max="+temp);
}
}
系统提示无法运行,这是为什么