Prime Or Composite Number Using While Loop in CPP

  1. Home
  2. Tutorials
  3. CPP
  4. CPP Programs
  5. While Loop
  6. Program

Source Code

#include <iostream>

using namespace std;

int main(int argc, char** argv) {

int num;
    int i,flag;
    flag = 0; // initial value for condition.
    i = 2;  // intitial value for counter variable.
    cout<<"Enter Number : ";
    cin>>num;
    
    // Checking prime number.
    while(i <= num / 2 ) {
        if ( num % i == 0 ) {
            flag = 1;
        }
        i++;
    }
    
    if ( flag == 0 ) {
        cout<<"Given Number is Prime";
    } else {
        cout<<"Given Number is Composite";
    }
    return 0;
}

Output

c++ program to check whether a given number is prime or compositeWorking

Prime numbers are only divisible by one and itself. Let suppose Whe have a numbe N, Then N will call prime only if N % K <> 0 For all K > 1 and K <> N. In this program we declare three variables.

Counter Variable ( To check factors from 2 to given number

Flag Variable (to ensure check for factor of given number)

Num variable (for taking input from user)

In loop iterations we check either any value of counter variable is factor (completly dividing) given number. If counter variable particular value proof as factor of N then we will set flag value as 1 (means change flag set value)..

In last step we will check if flag is changed it means there is factor of given number from 2 to N. Then number will be composite else number will prime.

Comments
sir in while loop i should i<num if i <=num then every number will be composite becz every no will give reminder zero when divided by itself
Asad Hussain
07/Jan/23 01:05 am
Login to TRACK of Comments.