Question: ( 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 no-arg constructor that creates an EvenNumber object for the value
0.
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 Exercise12_08Extra {
public static void main(String[] args){
try {
System.out.print("Enter an integer: ");
Scanner input = new Scanner(System.in);
int intValue = input.nextInt();
EvenNumber evenNumber = new EvenNumber(intValue);
System.out.println("Current number is "+ evenNumber.getValue());
System.out.println("Next even number is "
+ evenNumber.getNext().getValue());
System.out.println("Previous even number is "
+ evenNumber.getPrevious().getValue());
}
catch (RuntimeException ex){
System.out.println(ex);
}
}
}
class EvenNumber {
// WRITE YOUR CODE HERE
}
 (The EvenNumber class) Define the EvenNumber class for representing an even

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!