Q:

C++ Program to find Factors of a Number using For loop

belongs to collection: C++ Number Solved Programs

0

Write a C++ Program to find Factors of a Number using For loop. Here’s simple C++ Program to find Factors of a Number using For loop in C++ Programming Language.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Normally, when we work with Numbers, we use primitive data types such as int, short, long, float and double, etc. The number data types, their possible values and number ranges have been explained while discussing C++ Data Types.

 
 

Here is source code of the C++ Program to find Factors of a Number using For loop. The C++ program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.


SOURCE CODE : :

/* C++ Program to find Factors of a Number using For loop  */

#include<iostream>

using namespace std;

int main()
{
    long int n,i;
    cout<<"Enter any number: ";
    cin>>n;
    cout<<endl<<"\nFactors of [ "<<n<<" ] are :: ";

    for(i=1;i<=n;++i)
    {
        if(n%i==0)
            cout<<" "<<i;
    }

    cout<<"\n";

    return 0;
}

OUTPUT : :


/* C++ Program to find Factors of Number using For loop  */


Enter any number: 1234


Factors of [ 1234 ] are ::  1 2 617 1234

Process returned 0

Above is the source code for C++ Program to find Factors of Number using For loop which is successfully compiled and run on Windows System.The Output of the program is shown above .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ Number Solved Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C++ Program to Find Sum of Square of first n Natur... >>
<< C++ Program to Find Sum of n Natural Numbers using...