first=JOptionPane.showInputDialog( "请输入第1条边长: ");
second=JOptionPane.showInputDialog( "请输入第2条边长: ");
third=JOptionPane.showInputDialog( "请输入第3条边长: ");
n1=Integer.parseInt(first);
n2=Integer.parseInt(second);
n3=Integer.parseInt(third);
添加异常处理,确保输入的数据不为空,并且都是正数?
try{
n1=Integer.parseInt(first);
n2=Integer.parseInt(second);
n3=Integer.parseInt(third);
}catch(NumberFormatException e){
System.out.println( "输入含有非数字符号!!!! ");
}
if(n1 <=0)
{
//为非正数
}
second=JOptionPane.showInputDialog( "请输入第2条边长: ");
third=JOptionPane.showInputDialog( "请输入第3条边长: ");
n1=Integer.parseInt(first);
n2=Integer.parseInt(second);
n3=Integer.parseInt(third);
添加异常处理,确保输入的数据不为空,并且都是正数?
try{
n1=Integer.parseInt(first);
n2=Integer.parseInt(second);
n3=Integer.parseInt(third);
}catch(NumberFormatException e){
System.out.println( "输入含有非数字符号!!!! ");
}
if(n1 <=0)
{
//为非正数
}