Skip to content

Files

Latest commit

95343e9 · Aug 27, 2024

History

History

Java Static Initializer Block

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 27, 2024
Aug 25, 2024

Java HackerRank

Difficulty Max Score Success Ratio
Easy 10 96.12%

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 [SVG image] and height [SVG image] . You should read the variables from the standard input.

If [SVG image] or [SVG image] [SVG image] , 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 [SVG image] : the breadth of the parallelogram. The next line contains [SVG image] : the height of the parallelogram.

Constraints

  • [SVG image]
  • [SVG image] 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

💡 Hints

➡️ Approach

✅ Detailed Solution

View Solution : Java Static Initializer Block

Submissions Leaderboard Discussions Editorial
📝 My Submission 🏆 Track our position 🤔 Help from Community ✍️ Editorial