-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNumber-Series.cpp
114 lines (97 loc) · 2.12 KB
/
Number-Series.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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#include<iostream>
#include<cmath>
using namespace std;
void Armstrong_Number(int x){
int temp=0,result=x;
while(x){
// cout<<x<<"\t"<<temp<< endl;
temp+=(x%10)*(x%10)*(x%10);
// cout<<temp<<endl;
x/=10;
}
if(result==temp){
cout<<"The given number "<<result<< " is an armstrong number"<<endl;
}
else{
cout<<"The given number "<<result<< " is not an armstrong number"<<endl;
}
}
void Reverse_Number(int x){
int temp=0,y=x;
while(y){
temp=temp*10+(y%10);
y/=10;
}
cout<<"The reverse of "<<x<<" is "<<temp<<endl;
}
void Ascii(char a){
int y=a;
cout<<"The ASCII value of "<<a<<" is "<<y<<endl;
}
void Factor (int x){
cout<<"The factors of "<<x<<" are: ";
for(int i=2;i<x/2;i++){
if(x%i==0){
cout<<i<<" ";
}
}
cout<<endl;
}
void Factorial(unsigned long long int x){
unsigned long long int result=1,y=x;
while(y){
result=result*y;
y--;
}
cout<<x<<"! = "<<result<<endl;
}
bool isPrime(int x){
for(int i=2;i<=sqrt(x);i++){
if(x%i==0){
return 0;
}
}
return 1;
}
void fibonaci(int n){
int t1=0,t2=1,next;
while(n){
cout<<t1<<" ";
next=t1+t2;
t1=t2;
t2=next;
n--;
}
}
int main(){
#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
int x;
unsigned long long int y=5;
char a;
cin>>x>>a;
Armstrong_Number(x);
Reverse_Number(x);
Ascii(a);
Factor(x);
Factorial(y);
// Print all Primes between two numbers
int n1,n2;
cin>>n1>>n2;
cout<<"The Prime numbers between "<<n1<<" and "<<n2<<" are: ";
for(int i=n1;i<=n2;i++){
if(isPrime(i)){
cout<<i<<" ";
}
}
cout<<endl;
//Fibonnai Series
int n;
cin>>n;
cout<<"The fibonacci series upto "<<n<<" terms: ";
fibonaci(n);
cout<<endl;
return 0;
}