Exception in thread "main" Kilograms Pounds | Pounds Kilograms
java.lang.ArithmeticException: / by zero
at Chapter5.ExerciseConversionList.main(ExerciseConversionList.java:33)
当我运行程序时,我得到以下内容:
run script
我正在使用Eclipse并且没有看到任何警告
答案 0 :(得分:1)
最后,您将/
放错了.
double conversionlb = Math.round((lb * .453) * 10) /10.0;