Java Static Initializer Block

  • + 1 comment

    System.out.print(area); ?????

    static boolean flag=true;
    static Scanner in=new Scanner(System.in);
    static int B=in.nextInt();
    static int H=in.nextInt();
    static
    {
       
        if(B>0 && H>0)
            flag=true;
        else
        {
            flag=false;
            System.out.println("java.lang.Exception: Breadth and height must be positive");
        }
            
    }
    

    paste the same code,complied and tested and let me know!

    • + 1 comment

      i did the same thing but got an error class,enum or interface expected.pls help me

      • + 0 comments

        i also did exactly same but i am getting error