-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary_function_11.cpp
More file actions
85 lines (57 loc) · 880 Bytes
/
library_function_11.cpp
File metadata and controls
85 lines (57 loc) · 880 Bytes
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include<iostream>
#include<cmath>
using namespace std;
int fact(int x){
int f=1;
for(int i=1;i<=x;i++){
f *=i;
}
return f;
}
int main(){
// cout<<sqrt(4)<<endl;
// cout<<cbrt(4)<<endl;
// cout<<pow(2,3)<<endl;
// cout<<max(5,9)<<endl;
// cout<<min(5,9)<<endl;
// combination
// int n;
// cout<<"enter n: ";
// cin>>n;
// int r;
// cout<<"enter r: ";
// cin>>r;
// int a=1;
// for(int i=1;i<=n;i++){
// a *=i;
// }
// int b=1;
// for(int i=1;i<=r;i++){
// b *=i;
// }
// int c=1;
// for(int i=1;i<=n-r;i++){
// c *=i;
// }
//OR
// int n;
// cout<<"enter n: ";
// cin>>n;
// int r;
// cout<<"enter r: ";
// cin>>r;
// int a=fact(n);
// int b=fact(r);
// int c=fact(n-r);
// cout<<a/(b*c);
//permutation
int n;
cout<<"enter n: ";
cin>>n;
int r;
cout<<"enter r: ";
cin>>r;
int a=fact(n);
int c=fact(n-r);
cout<<a/c;
}