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.
After reading this, I just realized that the whole point of using static is that this line below are running before the main class is called (I made the code more readable here below:)
staticbooleanflag=true;staticintB,H;static{Scanners=newScanner(System.in);B=s.nextInt();s.nextLine();H=s.nextInt();s.close();if(H<=0||B<=0){flag=false;System.out.println("java.lang.Exception: Breadth and height must be positive");}}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Java Static Initializer Block
You are viewing a single comment's thread. Return to all comments →
After reading this, I just realized that the whole point of using static is that this line below are running before the main class is called (I made the code more readable here below:)