Algorithm


Problem Name: Java Static Initializer Block

Problem Link: https://www.hackerrank.com/challenges/java-static-initializer-block/problem?isFullScreen=true

In this HackerRank Functions in Java programming problem solution,

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 B and height H . You should read the variables from the standard input.

If B <= 0 or H <= 0 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 B : the breadth of the parallelogram. The next line contains B the height of the parallelogram.

Constraints

  • -100  <= B <= 100
  • -100 <= H <= 100

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

 

 

 

Code Examples

#1 Code Example with Java Programming

Code - Java Programming


import java.util.Scanner;

public class Solution{
	static Scanner input = new Scanner(System.in);

    public static boolean flag = false;
    public static int B = input.nextInt();
    public static int H = input.nextInt();

    static{
        if(B > 0 && H > 0)
            flag = true;
        else
            System.out.println("java.lang.Exception: Breadth and height must be positive");
    }

	public static void main(String[] args){
		if(flag){
			int area = B * H;
			System.out.print(area);
		}	
	}
}
Copy The Code & Try With Live Editor
Advertisements

Demonstration


Previous
[Solved] Java End-of-file in Java solution in Hackerrank - Hacerrank solution Java
Next
[Solved] Java Datatypes in Java solution in Hackerrank - Hacerrank solution Java