java.lang.ObjectExceptionsHandledWithExit
public class ExceptionsHandledWithExit
Validating that both inputs are integers and the denominator is not zero an using methods and system exits.
Constructor Summary | |
---|---|
ExceptionsHandledWithExit()
|
Method Summary | |
---|---|
static int |
inputInt(java.lang.String prompt)
Displays a message to the user, gets input from the terminal and evaluates that it is an 'int'. |
static boolean |
isInteger(java.lang.String numberString)
A boolean method that evaluates a 'String' to see if all characters within it are integers. |
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 ExceptionsHandledWithExit()
Method Detail |
---|
public static int inputInt(java.lang.String prompt)
prompt
- The message displayed to the user
public static boolean isInteger(java.lang.String numberString)
numberString
- The 'String' to be evaluatedpublic 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