當我運行程序100是由數字衆說紛紜,但一旦它到達0將出現一條消息,告訴用戶說100不能由0Java中,嘗試捕獲後繼續
分我如何獲得程序在錯誤之後繼續,並將其餘的數字除以100。
這是我當前的代碼:
public class testing {
int[] table;
int number;
public testing(int number) {
this.number = number;
table = new int[number];
}
public static void main(String[] args) {
try {
int[] numbers = { 2, 3, 0, 4, 5 };
testing division;
for (int i = 0; i < 5; i++) {
division = new testing(100/numbers[i]);
System.out.println("Answer is " + division.number);
}
} catch (Exception e) {
System.out.println("A number cannot be divided by 0");
}
}
}
請使用提供標準縮進的工具,任何好的IDE都可以。 –