Java Static Initializer Block

  • + 0 comments

    JAVA SOLUTION : import java.io.; import java.util.;

    public class Solution {

    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();
    }
    

    }