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.
public static int calcularArea(int a,int b) throws Exception{
if (a <= 0 || b<= 0) {
throw new Exception("java.lang.Exception: Breadth and height must be positive");
}
else{
return (a*b);
}
}
public static void main(String[] args) {
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
Scanner scanner = new Scanner (System.in);
try{
int a = scanner.nextInt();
int b = scanner.nextInt();
System.out.println(calcularArea(a,b));
}
catch(Exception e){
System.out.println(e.getMessage());
}
scanner.close();
}
}
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 →
JAVA SOLUTION : import java.io.; import java.util.;
public class Solution {
}