-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget_all_factor.cpp
51 lines (50 loc) · 952 Bytes
/
get_all_factor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// time complexity of this algo is sqrt(n);
/*
written by pankaj kumar.
*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll ;
typedef vector<int> vi;
typedef vector<pair<int,int>> vpi;
typedef vector<ll> vl;
typedef vector<pair<ll,ll>> vpl;
typedef vector<string> vs;
typedef set<string> ss;
typedef set<int> si;
typedef set<ll> sl;
typedef set<pair<int,int>> spi;
typedef set<pair<ll,ll>> spl;
// macros
#define pan cin.tie(0);cout.tie(0);ios_base::sync_with_stdio(0);
#define mod 1000000007;
#define phi 1.618
#define line cout<<endl;
/* ascii value
A=65,Z=90,a=97,z=122
*/
int main()
{
int a,count=0;
cout<<"Enter two number : ";
cin>>a;
cout<<"List of all factor of "<<a<<"is : ";
for(int i=1;i<=sqrt(a);i++)
{
if(a%i==0)
{
if(a/i==i)
{
count++;
cout<<i<<" ";
}
else
{
count+=2;
cout<<a/i<<" "<<i<<" ";
}
}
}
line;
cout<<"Hence total no of factor of "<<a<<"is "<<count<<endl;
}