Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4028334
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T11:12:27+00:00 2026-05-20T11:12:27+00:00

This c++ code prints out the following prime numbers: 3 5 7 11 13

  • 0

This c++ code prints out the following prime numbers: 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97.

But I don’t think that’s the way my book wants it to be written. It mentions something about square root of a number. So I did try changing my 2nd loop to for (int j=2; j<sqrt(i); j++) but it did not give me the result I needed.

How would I need to change this code to the way my book wants it to be?

int main () 
{
    for (int i=2; i<100; i++) 
        for (int j=2; j<i; j++)
        {
            if (i % j == 0) 
                break;
            else if (i == j+1)
                cout << i << " ";

        }   
    return 0;
}

A prime integer number is one that has
exactly two different divisors,
namely 1 and the number itself. Write,
run, and test a C++ program that
finds and prints all the prime numbers
less than 100. (Hint: 1 is a prime
number. For each number from 2 to 100,
find Remainder = Number % n, where n
ranges from 2 to sqrt(number). \ If n
is greater than sqrt(number), the
number is not equally divisible by n.
Why? If any Remainder equals 0, the
number is no a prime number.)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T11:12:28+00:00Added an answer on May 20, 2026 at 11:12 am

    Three ways:

    1.

    int main () 
    {
        for (int i=2; i<100; i++) 
            for (int j=2; j*j<=i; j++)
            {
                if (i % j == 0) 
                    break;
                else if (j+1 > sqrt(i)) {
                    cout << i << " ";
    
                }
    
            }   
    
        return 0;
    }
    

    2.

    int main () 
    {
        for (int i=2; i<100; i++) 
        {
            bool prime=true;
            for (int j=2; j*j<=i; j++)
            {
                if (i % j == 0) 
                {
                    prime=false;
                    break;    
                }
            }   
            if(prime) cout << i << " ";
        }
        return 0;
    }
    

    3.

    #include <vector>
    int main()
    {
        std::vector<int> primes;
        primes.push_back(2);
        for(int i=3; i < 100; i++)
        {
            bool prime=true;
            for(int j=0;j<primes.size() && primes[j]*primes[j] <= i;j++)
            {
                if(i % primes[j] == 0)
                {
                    prime=false;
                    break;
                }
            }
            if(prime) 
            {
                primes.push_back(i);
                cout << i << " ";
            }
        }
    
        return 0;
    }
    

    Edit: In the third example, we keep track of all of our previously calculated primes. If a number is divisible by a non-prime number, there is also some prime <= that divisor which it is also divisble by. This reduces computation by a factor of primes_in_range/total_range.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm wondering why this code section prints out the following: print request.user.has_perm('bug_tracking.is_developer'): + str(request.user.has_perm('bug_tracking.is_developer'))
I have the following code function myFunction(items) { // this prints out 11 alert(items.length);
The following PHP code prints out this warning: Warning: openssl_csr_get_public_key(): supplied resource is not
I have the following code that generates the desired HTML. But it prints it
I have the following code which spits out prime numbers between 1 and N.
Consider this following code (that retrieves the response from a HTTP request and prints
I got this code ` // // prints out Hello World! // hello_world(); //First
Consider the following C code: int c=((0xa3>>6)&0x1f)|0xc0; printf(%d\n,c); It correctly prints out 194 (
Somewhat to my surprise, the following code prints out Close twice. Running through the
Just finished reading this blog post: http://www.skorks.com/2010/03/an-interview-question-that-prints-out-its-own-source-code-in-ruby/ In it, the author argues the case

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.