Question

In: Computer Science

Write a program that prints the count of all prime numbers between A and B (inclusive),...

Write a program that prints the count of all prime numbers between A and B (inclusive), where A and B are defined as follows:

A = The 5 digit unique number you had picked at the beginning of the semester

B = A + 5000

Just a recap on prime numbers: A prime number is any number, greater or equal to 2, that is divisible ONLY by 1 and itself. Here are the first 10 prime numbers: 2, 5, 7, 11, 13, 17, 19, 23, and 29.

Rules:

  1. You should first create a boolean function called isPrime and use that function in your program. This function should take in any int and return true if the number is prime, otherwise, return a false. In the main body of your program, you should create a loop from A to B (inclusive) and use isPrime function to determine if the loop number should be counted or not.

  2. Your program SHOULD NOT PRINT the individual prime numbers. You can print them for your own testing purpose, but in the final submission, comment out such print statements.

  3. Your program SHOULD ONLY PRINT the answer -- which is a number.

  4. Do not print extra characters in your answer (E.g. "answer=123" instead of 123)

the values for me:

A = 5000;

B = A+5000;

sample code to get started --->>>>>>>>>>

#include<iostream>
using namespace std;

bool isDivisibleBy(int num, int divisor) {
        // function returns true if num is divisible by divisor
        if(num % divisor == 0) {
                return true;
        } else {
                return false;
        }
}

bool isodd(int num) {
        // function returns true if num is odd
        if( isDivisibleBy(num,2) ) {
                return false;
        } else {
                return true;
        }
}


int main() {
        const int A = 1;
        const int B = 100;
        const int N = 17;
        
        int count = 0;
        
        // count of the numbers between A and B that are odd and divisible by N
        
        for(int i=A; i<=B; i++) {
                if( isDivisibleBy(i,N) && isodd(i) ) {
                        count++;
                }
        }
        
        // just print the answer and nothing else...
        cout << count << endl;

        return 0;
}

Solutions

Expert Solution

There are multiple ways to find if a number is a prime number or not. I'd suggest two such ways.

1. Would be the easy one. A direct approach. This would be to check all numbers from 2 to N(exclusive) and see if the number is divisible. If it is, its not a prime number, else it is

CODE:

#include<iostream>

using namespace std;

bool isprime(int n)
{
for(int i=2;i<n;i++) //taking a loop from 2 to n.
{
//if the number is divisible by any of the numbers between 2 and n, it is not prime and so we return false for it.
if(n%i==0)
return false;
}
return true;
}


int main()
{
int A=5000;
int B=A+5000;
int c=0;//used for count.
for(int i=A;i<=B;i++)
{
if(isprime(i)) //isprime function sending each value from A to B.
c++;
}
cout<<c<<endl;
}

#include<iostream>

using namespace std;

bool isprime(int n)
{
    for(int i=2;i<n;i++) //taking a loop from 2 to n.
    {
        //if the number is divisible by any of the numbers between 2 and n, it is not prime and so we return false for it.
        if(n%i==0)
            return false;
    }
    return true;
}


int main()
{
    int A=5000;
    int B=A+5000;
    int c=0;//used for count.
    for(int i=A;i<=B;i++)
    {
        if(isprime(i)) //isprime function sending each value from A to B. 
            c++;
    }
    cout<<c<<endl;
}

OUTPUT:

560

2. This is a time efficient approach. The one on top would take you O(n). This means that if a number turns out to be prime, it would have to calculate all value from 2 to n. Which is very inefficient. So, to tackle this and reduce the time complexity, I'll suggest a better approach, Its upto you to go with the approach of your choice.

#include<iostream>

using namespace std;

bool isprime(int n)
{
//these are boundary cases, not existent in your case since your numbers start from 5000
if(n<=1)
return true;
if(n<=3)
return false;
//We use this condition because a number is usually either divisible by 2 or 3, this is the most common case.
//Also, if we know a number is not divisible by 2 or 3, it is not divisible by 4. How does this help us?
//With this step, we just need to check for 5 and 7, between 1 to 10.
//So basically for every 10 divisions, we are reducing it to 4. Again between 10 to 20, we check 11, 13, 17, 19. The prime numbers, all others are checked.
if(n%2==0 || n%3==0)
return false;
//i*i because we just need to check for half the numbers, the other half repeat themselves.
for(int i=5;i*i<=n;i=i+6)
if(n%i==0 || n%(i+2)==0)
return false;
return true;
}


int main()
{
int A=5000;
int B=A+5000;
int c=0;//used for count.
for(int i=A;i<=B;i++)
{
if(isprime(i)) //isprime function sending each value from A to B.
c++;
}
cout<<c<<endl;
}

#include<iostream>

using namespace std;

bool isprime(int n)
{
    //these are boundary cases, not existent in your case since your numbers start from 5000
    if(n<=1)
        return true;
    if(n<=3)
        return false;
    //We use this condition because a number is usually either divisible by 2 or 3, this is the most common case.
    //Also, if we know a number is not divisible by 2 or 3, it is not divisible by 4. How does this help us?
    //With this step, we just need to check for 5 and 7, between 1 to 10.
    //So basically for every 10 divisions, we are reducing it to 4. Again between 10 to 20, we check 11, 13, 17, 19. The prime numbers, all others are checked.
    if(n%2==0 || n%3==0)
        return false;
    //i*i because we just need to check for half the numbers, the other half repeat themselves.
    for(int i=5;i*i<=n;i=i+6)
        if(n%i==0 || n%(i+2)==0)
            return false;
    return true;
}


int main()
{
    int A=5000;
    int B=A+5000;
    int c=0;//used for count.
    for(int i=A;i<=B;i++)
    {
        if(isprime(i)) //isprime function sending each value from A to B.
            c++;
    }
    cout<<c<<endl;
}

If you have any doubts or require any clarification, please leave a comment and i will answer it as soon as possible. Thank you :)


Related Solutions

Write a c++ program that prints the count of all prime numbers between A and B...
Write a c++ program that prints the count of all prime numbers between A and B (inclusive), where A and B are defined as follows: A = Any 5 digit unique number B = A + 1000 Just a recap on prime numbers: A prime number is any number, greater or equal to 2, that is divisible ONLY by 1 and itself. Here are the first 10 prime numbers: 2, 5, 7, 11, 13, 17, 19, 23, and 29. Rules:...
Write a program that finds and prints all of the prime numbers between 3 and X...
Write a program that finds and prints all of the prime numbers between 3 and X (X is input from the user). A prime number is a number such that 1 and itself are the only numbers that evenly divide it (for example, 3, 5, 7, 11, 13, 17, …). One way to solve this problem is to use a doubly nested loop (a loop inside another loop). The outer loop can iterate from 3 to N while the inner...
Write a program that generates all prime numbers between 2 and 1000, using the Sieve of...
Write a program that generates all prime numbers between 2 and 1000, using the Sieve of Eratosthenes method. You can find many articles that describe the method for finding primes in this manner on the Internet. Display all the prime values. This program should be in assembly language.
Question : Write a C++ program to find all prime numbers between 10 to 100 by...
Question : Write a C++ program to find all prime numbers between 10 to 100 by using while loop. Hint: a prime number is a number that is divisible by 1 and itself. For example 3, 5, 7, 11, 13 are prime numbers because they are only divisible by 1 and themselves.
Question1; Write a c++ program that prints all natural numbers between 10(included) to 100(included) by the...
Question1; Write a c++ program that prints all natural numbers between 10(included) to 100(included) by the while loop. question2: Write a C++ program that prints all numbers between 10 to 1000 that are divisible by 5
Write a program that prints out all numbers, less than or equal to 10,000,000, that are...
Write a program that prints out all numbers, less than or equal to 10,000,000, that are evenly divisible by all numbers between 5 and 15 (inclusive). Do not use any libraries besides stdio.h. Need it in 10 minutes, please.
Write a program in C++ that prints out the even numbers between 1 and 21 using...
Write a program in C++ that prints out the even numbers between 1 and 21 using WHILE loop. Also, find the sum AND product of these numbers and display the resulting sum and product.
Write a program that computes and prints the average of numbers in a text file. I...
Write a program that computes and prints the average of numbers in a text file. I created a text file integers.txt that has the numbers 5,4,3,2,1. I need to define the average function Define the main function which will include the following things 1. prompt user for input of text file name 2. open and read input file, can be done before or inside high order functions 3. use two high order functions 4.calculate and display averages and original ist...
Use "do...while" loops to write a program that finds all prime numbers less than a specified...
Use "do...while" loops to write a program that finds all prime numbers less than a specified value.
Write a python program to sum the prime numbers existing in an array . For instance...
Write a python program to sum the prime numbers existing in an array . For instance , if A = [4, 7, 12, 3, 9] the output should be 10
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT