You are viewing a single comment's thread. Return to all comments →
static boolean flag; static int B,H;
static {
Scanner sc=new Scanner(System.in); flag=true; B=sc.nextInt(); H=sc.nextInt(); try{ if (B<=0 || H<=0) throw new Exception("Breadth and height must be positive"); } catch(Exception e) {System.out.println(e); flag=false; } sc.close();
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Static Initializer Block
You are viewing a single comment's thread. Return to all comments →
static {
}