Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Design a class named MyInteger. The class contains: An int data field ( or data member ) named value that stores the int value represented
Design a class named MyInteger. The class contains:
An int data field or data member named value that stores the int value represented by this object.
A constructor that creates a MyInteger object for the specified int value.
A get method that returns the int value.
Methods isEven isOdd and isPrime that return true if the value is even, odd, or prime, respectively.
Static methods isEvenint isOddint and isPrimeint that return true if the specified value is even, odd, or prime, respectively.
Static methods isEvenMyInteger isOddMyInteger and isPrimeMyInteger that return true if the specified value is even, odd, or prime, respectively.
Methods equalsint and equalsMyInteger that return true if the value in the object is equal to the specified value.
A static method parseIntchar that converts an array of numeric characters to an int value. Do not use pointers.
A static method parseIntString that converts a string into an int value. Do not use pointers.
Implement the class. Write a client program that tests all methods in the class. A starter code is provided below. Note: Reminder: Make sure to document every block of your program. Filename: Progcpp
An example of the program inputoutput is shown below:
This program will be used to design a class named MyInteger to perform various operations.
Enter an intger number example :
The Number Entered:
Is Even number? false
Is Odd number? true
Is a Prime Number? true
Is Even number? false
Is Odd number? true
Is a Prime Number? true
Is Even number? false
Is Odd number? true
Is a Prime Number? true
Is Equal to true
Is Equal to false
The integer number for the numeric characters is:
The integer number for the numeric string is:
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