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.
staticbooleanflag=true;staticScannerin=newScanner(System.in);staticintB=in.nextInt();staticintH=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!
Java Static Initializer Block
You are viewing a single comment's thread. Return to all comments →
i have used the same code, still getting errors...
.java:36: error: class, interface, or enum expected public static void main(String[] args){ ^ .java:39: error: class, interface, or enum expected System.out.print(area); ^ .java:40: error: class, interface, or enum expected } ^
I'm not getting this error...plz help me out.
System.out.print(area); ?????
paste the same code,complied and tested and let me know!
i did the same thing but got an error class,enum or interface expected.pls help me
i also did exactly same but i am getting error
Do not close class before main. There is closing parenthesis for class after main.
Thanks a ton! It Worked for me.