Question: Question #1. Implement the following C++ class and its methods given the following. Stick to the specifications of this class. Do not add/remove any methods
Question #1. Implement the following C++ class and its methods given the following. Stick to the specifications of this class. Do not add/remove any methods or data members. This is a Stack implementation using integers.
#ifdef STACK_H
#define STACK_H
class StackOfIntegers
{
public:
StackOfIntegers();
bool isEmpty():
int peek();
int push(int value);
int pop():
int getSize();
private:
int elements[100];
int size;
};
#endif
Question #2. Using the Stack implementation from Question #1 above, write a program to print prime numbers from 1 through 100 in reverse. You must use the Stack integers from Question #1 to store the prime numbers. You will have to write a helper function to determine whether a number is prime. Show an example of the output.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
