✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int a = 9, i = -1;
while (i <3) {
try {
System.out.print (36 / a);
}
catch (ArithmeticException e) {
System.out.print (36/2);
}
finally {
System.out.print (36/1);
}
a - = 3;
i ++;
}