Tuesday, May 16, 2023

Java Static Initializer Block | HackerRank

 Static initialization blocks are executed when the class is loaded, and you can initialize static variables in those blocks.

It's time to test your knowledge of Static initialization blocks. You can read about it here.

You are given a class Solution with a main method. Complete the given code so that it outputs the area of a parallelogram with breadth  and height . You should read the variables from the standard input.

If  or  , the output should be "java.lang.Exception: Breadth and height must be positive" without quotes.

Input Format

There are two lines of input. The first line contains : the breadth of the parallelogram. The next line contains : the height of the parallelogram.

Constraints

Output Format

If both values are greater than zero, then the main method must output the area of the parallelogram. Otherwise, print "java.lang.Exception: Breadth and height must be positive" without quotes.

Sample input 1

1
3

Sample output 1

3

Sample input 2

-1
2

Sample output 2

java.lang.Exception: Breadth and height must be positive


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


public class Solution {

    public static void main(String[] args) {
        int a,b;
        Scanner s=new Scanner(System.in);
        a=s.nextInt();
        b=s.nextInt();
        
        
        try{
            int area1= area(a,b);
            System.out.println(area1);
        }catch(Exception e)
        {
            System.out.println(e);
        }
        
        
    }
    public static int area(int a,int b) throws Exception{
    if(a<=0 || b<=0)
            throw new Exception("Breadth and height must be positive");
    else 
    return a*b;
    }
}

No comments:

Post a Comment

Featured Post

14. Longest Common Prefix

Popular Posts