Created
December 16, 2022 06:47
-
-
Save JoshuaPaulBarnard/3d0aedd6f660bf9c14f469749d017dcc to your computer and use it in GitHub Desktop.
Factors of a number
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//----------------------------------------------------- | |
// Program returns the factors for an inputted number. | |
// filename: factors.cpp by Joshua Paul Barnard | |
//----------------------------------------------------- | |
#include<iostream> | |
using namespace std; | |
int main() | |
{ | |
int i,num1,num2,num3; | |
cout<<"Enter a number:"; | |
cin>>num1; | |
cout<<"The factors of given number are:\n"; | |
for(i=1;i<=num1;i++) | |
{ | |
if(num1%i==0) | |
{ | |
cout<<i<<" "; | |
} | |
} | |
cout<<'\n'; | |
cout<<"\nEnter a number:"; | |
cin>>num2; | |
cout<<"The factors of given number are:\n"; | |
for(i=1;i<=num2;i++) | |
{ | |
if(num2%i==0) | |
{ | |
cout<<i<<" "; | |
} | |
} | |
cout<<'\n'; | |
cout<<"\nEnter a number:"; | |
cin>>num3; | |
cout<<"The factors of given number are:\n"; | |
for(i=1;i<=num3;i++) | |
{ | |
if(num3%i==0) | |
{ | |
cout<<i<<" "; | |
} | |
} | |
cout<<'\n'; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment