编写Application,要求每个数组元素的值都由命令行传入,求数组元素的最大值、最小值、平均值
public class szbj {
public szbj() {
}
public static void main(String[] args) {
if(args.length==0)
{
System.out.println("请输入几个参数:");
}
try
{
double temp=Double.parseDouble(args[0]);
double max=temp;
double min=temp;
double sum=temp;
for(int i=1;i<args.length;i++)
{
temp=Double.parseDouble(args[i]
if(max<temp)
max=temp;
if(min>temp)
min=temp;
sum+=temp;
}
System.out.println("最大值为"+max+",最小值为"+min+",平均值
为"+sum/args.length+"。");
}
catch(Exception e)
{
System.out.println("存在参数不为整型。");
return;
}
}
}
一开始就是异常啊