class Test { public static void main(String[] args){ int a = 0; int b = 10; int c; { try { System.out.println("OK"); c = b/a; }catch(ArithmeticException e) {System.out.println("EROR");} }while(true); }}
class Test{ public static void main(String[] args) { int a = 0; int b = 10; int c;do //<<<<<<<<<<<<<<<<< { try { System.out.println("OK"); c = b/a; } catch(ArithmeticException e) { System.out.println("EROR"); } } while(true); }}
do{}while(1);
{ //блок, выполнится один раз}while(1){ //а тут зациклились}