Java Static Initializer Block

  • + 0 comments

    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 main
    

    }//end of class