Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: List non-prime numbers from 1 to an upperbound

C++ For Loop: Exercise-16 with Solution

Write a program in C++ to list non-prime numbers from 1 to an upperbound.

Pictorial Presentation:

C++ Exercises: List non-prime numbers from 1 to an upperbound

Sample Solution :-

C++ Code :

#include <iostream>
#include <cmath>
using namespace std;

int main()
{
    int ult;
    cout << "\n\n List non-prime numbers from 1 to an upperbound:\n";
    cout << "----------------------------------------------------\n";
    cout << " Input the upperlimit: ";
    cin >> ult;
    cout << " The non-prime numbers are: " << endl;
    for (int num = 2; num <= ult; ++num) 
    {
        int mfactor = (int)sqrt(num);
        for (int fact = 2; fact <= mfactor; ++fact) 
        {
            if (num % fact == 0) 
            {
                cout << num << " ";
                break;
            }
        }
    }
    cout << endl;
    return 0;
}

Sample Output:

 List non-prime numbers from 1 to an upperbound:                       
----------------------------------------------------                   
 Input the upperlimit: 25                                              
 The non-prime numbers are:                                            
4 6 8 9 10 12 14 15 16 18 20 21 22 24 25

Flowchart:

Flowchart: List non-prime numbers from 1 to an upperbound

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to asked user to input positive integers to process count, maximum, minimum, and average or terminate the process with -1.
Next: Write a program in C++ to print a square pattern with # character.

What is the difficulty level of this exercise?