-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path08- Java Static Initializer Block.java
More file actions
68 lines (46 loc) · 1.79 KB
/
08- Java Static Initializer Block.java
File metadata and controls
68 lines (46 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
Problem statement:
https://www.hackerrank.com/challenges/java-static-initializer-block/problem
Problem
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 H : 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
*/
import java.io.*;
import java.util.*;
public class Solution {
static{
Scanner sc = new Scanner (System.in);
int B = sc.nextInt();
int H = sc.nextInt();
if (B>0 && H>0)
{
System.out.print(B*H);
}else
{
System.out.print("java.lang.Exception: Breadth and height must be positive");
}
}
public static void main(String[] args) {
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
}
}