java.lang.ObjectExceptionsNotHandled
public class ExceptionsNotHandled
A class that needs exception handling.
Constructor Summary | |
---|---|
ExceptionsNotHandled()
|
Method Summary | |
---|---|
static void |
main(java.lang.String[] args)
Input two 'int' variables, calculate and display the quotient of the division operation. |
static int |
quotient(int numerator,
int denominator)
Performs division with the numerator and denominator parameters and returns the quotient. |
Methods inherited from class |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ExceptionsNotHandled()
Method Detail |
---|
public static void main(java.lang.String[] args)
args
- The String[] array command line parameterpublic static int quotient(int numerator, int denominator)
numerator
- The dividend of the division operationdenominator
- The divisor of the division operation