Answered step by step
Verified Expert Solution
Question
1 Approved Answer
( The EvenNumber class ) Define the EvenNumber class for representing an even number. The class contains: A data field value of the int type
The EvenNumber class Define the EvenNumber class for representing an
even number. The class contains:
A data field value of the int type that represents the integer value
stored in the object.
A noarg constructor that creates an EvenNumber object for the value
A constructor that constructs an EvenNumber object with the specified
value. If the value is not even, throw a RuntimeException with
message "value not even".
A function named getvalue to return an int value for this object.
A function named getNext to return an EvenNumber object that
represents the next even number after the current even number in this
object.
A function named getPrevious to return an EvenNumber object
that represents the previous even number before the current even
number in this object. Must start with
import java.util.Scanner;
public class ExerciseExtra
public static void mainString args
try
System.out.printEnter an integer: ;
Scanner input new ScannerSystemin;
int intValue input.nextInt;
EvenNumber evenNumber new EvenNumberintValue;
System.out.printlnCurrent number is evenNumber.getValue;
System.out.printlnNext even number is
evenNumber.getNextgetValue;
System.out.printlnPrevious even number is
evenNumber.getPreviousgetValue;
catch RuntimeException ex
System.out.printlnex;
class EvenNumber
WRITE YOUR CODE HERE
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started