Java Static Initializer Block

  • + 1 comment

    I don't think the try catch is necessary. Just use println is OK;

    //Write your code here
    static boolean flag = true;
    static int B, H;
    static {
        Scanner scanner = new Scanner(System.in);
        B = scanner.nextInt();
        scanner.nextLine();
        H = scanner.nextInt();
        scanner.close();
        if (B <= 0 || H <=0){
            flag = false;
            System.out.println("java.lang.Exception: Breadth and height must be positive");
        }
        else {
            //System.out.println(B * H);
        }
    }