We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
publicstaticScannersc=newScanner(System.in);publicstaticintB=sc.nextInt();publicstaticintH=sc.nextInt();publicstaticbooleanflag=init2();privatestaticbooleaninit2(){if(B<=0||H<=0){System.out.println("java.lang.Exception: Breadth and height must be positive");returnfalse;}returntrue;}
Java Static Initializer Block
You are viewing a single comment's thread. Return to all comments →
Without try-catch block
static int B; static int H; static boolean flag=true; static { Scanner sc=new Scanner(System.in); B=sc.nextInt(); sc.nextLine(); H=sc.nextInt(); sc.close(); while(H<=0 || B<=0) { flag = false;
}
This is more easy and working well.