You are viewing a single comment's thread. Return to all comments →
Here the Simplest way :-
import java.io.; import java.util.;
public class Solution {
public static void main(String[] args) { int a,b; Scanner sc=new Scanner(System.in); a=sc.nextInt(); b=sc.nextInt(); if(a>0 && b>0) { System.out.println(a*b); } else System.out.println("java.lang.Exception: Breadth and height must be positive"); }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Static Initializer Block
You are viewing a single comment's thread. Return to all comments →
Here the Simplest way :-
import java.io.; import java.util.;
public class Solution {
}