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
|
1417 Discussions
|
Please Login in order to post a comment
public class Solution { static int B,H; static boolean flag =true; static{ Scanner sc = new Scanner(System.in); B=sc.nextInt(); H=sc.nextInt(); if(B<=0 || H<=0){ flag=false; System.out.println("java.lang.Exception: Breadth and height must be positive"); } }
public static void main(String[] args){ if(flag){ int area=B*H; System.out.print(area); }
}//end of class
import java.io.; import java.util.; import java.text.; import java.math.; import java.util.regex.*;
public class Solution { static int H; static int B; static boolean flag;
static{ Scanner sc = new Scanner(System.in); H = sc.nextInt(); B = sc.nextInt(); if (H>=0 && B>=0){ flag = true; }else{ System.out.println("java.lang.Exception: Breadth and height must be positive");; } sc.close(); }
public static void main(String[] args){ if(flag){ int area=B*H; System.out.print(area); }
}//end of class
static int B; static int H; static boolean flag =true; static{ Scanner sc =new Scanner(System.in); B=sc.nextInt(); H=sc.nextInt(); sc.close(); try{ if(B<=0 || H<=0){ flag=false; throw new Exception ("Breadth and height must be positive") ; }} catch(Exception e){ System.out.println(e); System.exit(0); }
}