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.
Java Static Initializer Block
Java Static Initializer Block
Sort by
recency
|
1461 Discussions
|
Please Login in order to post a comment
Easy Pesy Solution******
}
public static void main(String[] args){ if(flag){ int area=B*H; System.out.print(area); }
}//end of class
static{ Scanner scan = new Scanner(System.in); int b = scan.nextInt(); int h = scan.nextInt(); try{ if(b <= 0 || h <= 0) throw new Exception("Breadth and height must be positive"); System.out.println(b*h);
}catch(Exception e){ System.out.println(e); } }
static int B; static int H; static boolean flag;
static { Scanner sc = new Scanner(System.in); B = sc.nextInt(); H = sc.nextInt(); if (B > 0 && H > 0) { flag = true; } else{ flag = false; System.out.println("java.lang.Exceptiom: Breadth and height must be positive "); } }
public class Solution {
}