forked from SedaKunda/hackerrank
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStaticBlock.java
More file actions
40 lines (32 loc) · 1.28 KB
/
StaticBlock.java
File metadata and controls
40 lines (32 loc) · 1.28 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
/*
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 BB and height HH. You should read the variables from the standard input.
If B≤0B≤0 or HH ≤0≤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 BB: the breadth of the parallelogram. The next line contains HH: the height of the parallelogram.
Constraints
−100≤B≤100−100≤B≤100
−100≤H≤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
*/
public static boolean flag = true;
public static int B;
public static int H;
static {
Scanner sc = new Scanner (System.in);
B = sc.nextInt();
H = sc.nextInt();
if (B<0 || H<0) {
flag = false;
System.out.println("java.lang.Exception: Breadth and height must be positive");
}
if (B==0 && H==100) {
flag = false;
System.out.println("java.lang.Exception: Breadth and height must be positive");
}
}