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.
classMyCalculator{publiclongpower(intN,intP)throwsException{if(N==0&&P==0)thrownewException("n and p should not be zero.");if(N<0||P<0)thrownewException("n or p should not be negative.");intpw=1;for(inti=0;i<P;i++)pw*=N;returnpw;}}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Java Exception Handling
You are viewing a single comment's thread. Return to all comments →