Question: java code for this : Using the supplied Java files (Operations.java) complete the main method in class OperationsTest so that it performs three division operations
java code for this :
Using the supplied Java files (Operations.java) complete the main method in class OperationsTest so that it performs three division operations successfully [i.e., the method Operations. Quotient () must successfully finish execution 3 times]. Handle all possible errors in the most user-friendly way. You should not change anything in class Operations.
import java.util.*;
public class Operations
{
public static int quotient(Scanner in)
{
System.out.print("Enter the dividend: ");
int dividend = in.nextInt();
System.out.print("Enter the divisor: ");
int divisor = in.nextInt();
return dividend/divisor;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
