A prime number is a number which is divisible only by itself
and 1. Examples of the first few primes are 2, 3, 5, 7, 11.
Consider writing a program which can generate prime numbers
for you. Your program should read in and set a maximum prime
to generate and a minimum number to start with when looking
for primes.
This program should be able to perform the following tasks:
1. Read the maximum number from user (keyboard input) to
look for primes. The program should not return any primes
greater than this number.
2. Read the minimum number from user (keyboard input) to
look for primes. The program should not return any primes
less than this number.
3. Generate and print out every prime number between the
maximum prime and minimum number specified by the user.
No Answer is Posted For this Question
Be the First to Post Answer
What are the benefits of c++?
What is a far pointer? where we use it?
If a base class is an adt, and it has three pure virtual functions, how many of these functions must be overridden in its derived classes?
How can a struct in c++ differs from a struct in c?
State the difference between pre and post increment/decrement operations.
Differentiate between realloc() and free().
Find out the bug in this code,because of that this code will not compile....... #include <iostream> #include <new> #include <cstring> using namespace std; class balance { double cur_bal; char name[80]; public: balance(double n, char *s) { cur_bal = n; strcpy(name, s); } ~balance() { cout << "Destructing "; cout << name << "\n"; } void set(double n, char *s) { cur_bal = n; strcpy(name, s); } void get_bal(double &n, char *s) { n = cur_bal; strcpy(s, name); } }; int main() { balance *p; char s[80]; double n; int i; try { p = new balance [3]; // allocate entire array } catch (bad_alloc xa) { cout << "Allocation Failure\n"; return 1; }
What are the difference between reference variables and pointers in C++?
What is main function in c++ with example?
Is structure can be inherited?
Name the operators that cannot be overloaded in C++?
What is the difference between method overloading and method overriding in c++?