-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath.cpp
More file actions
179 lines (159 loc) · 3.5 KB
/
math.cpp
File metadata and controls
179 lines (159 loc) · 3.5 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#include <iostream>
#include <math.h>
using namespace std;
void countDigits(int n) {
int count = 0;
while (n>0) {
n= n/10 ;
count++ ;
}
cout << count << endl;
}
void reverseNumber(int n) {
while (n>0) {
int digit = n % 10;
cout << digit;
n = n / 10;
}
cout << endl;
}
void reverseNumber2(int n) {
int reversedNum = 0;
while (n>0) {
int lastDigit = n % 10;
reversedNum = reversedNum * 10 + lastDigit;
n = n / 10;
}
cout << reversedNum << endl;
}
void checkPalindrome(int n) {
int originalNum = n;
int reversedNum = 0;
while (n>0) {
int lastDigit = n % 10;
reversedNum = reversedNum * 10 + lastDigit;
n = n / 10;
}
if (originalNum == reversedNum) {
cout << "Palindrome" << endl;
} else {
cout << "Not a Palindrome" << endl;
}
}
void checkGCD(int n1, int n2) {
int gcd = 1;
for (int i = 1; i <= min(n1, n2); i++) {
if (n1 % i == 0 && n2 % i == 0) {
gcd = i;
}
}
cout << gcd << endl;
}
int euclidGCD(int n1, int n2) {
while (n1 > 0 && n2 > 0) {
if (n1>n2) {
n1 = n1 % n2;
} else {
n2 = n2 % n1;
}
}
if (n1 ==0)
{
return n2;
} else {
return n1;
}
}
int checkArmstrongNumber(int n) {
int originalNum = n;
int temp = n;
int sum = 0;
double digits = 0;
while (temp > 0) {
temp = temp / 10;
digits++;
}
int temp2 = n;
while (temp2 > 0)
{
int lastDigit = temp2 % 10;
sum = sum + pow(lastDigit, digits);
temp2 = temp2 / 10;
}
if (sum == originalNum) {
cout << "Armstrong Number" << endl;
} else {
cout << "Not an Armstrong Number" << endl;
}
return 0;
}
int checkAN(int n) {
int k =to_string(n).length();
int sum = 0;
int temp = n;
while (temp > 0) {
int lastDigit = temp % 10;
sum += pow(lastDigit, k);
temp /= 10;
}
if (sum == n) {
cout << "Armstrong Number" << endl;
} else {
cout << "Not an Armstrong Number" << endl;
}
return 0;
}
int printDivisors(int n) {
for (int i =1; i <= n; i++) {
if (n % i == 0) {
cout << i << " ";
}
}
cout << endl;
return 0;
}
int printDivisorsOptimized(int n) {
for (int i =1; i <= sqrt(n); i++) {
if (n % i == 0) {
cout << i << " ";
if (i != n / i) {
cout << n / i << " ";
}
}
}
cout << endl;
return 0;
}
int checkPrime(int n) {
if (n <= 1) {
cout << "Not a prime number" << endl;
return 0;
}
for (int i = 2; i <= sqrt(n); i++) {
if (n % i == 0) {
cout << "Not a prime number" << endl;
return 0;
}
}
cout << "Prime number" << endl;
return 0;
}
int main() {
int n;
cin >> n;
// int n1, n2;
// cin >> n1 >> n2;
// countDigits(n);
// reverseNumber(n); // just spits out digits and not actually revrresing the number
// reverseNumber2(n); // actually reverses the number
// checkPalindrome(n);
// checkGCD(n1, n2);
// euclidGCD(n1, n2);
// cout << euclidGCD(n1, n2) << endl;
// checkArmstrongNumber(n); // slower bec 2 loops
// checkAN(n);
// printDivisors(n); not optimal
// printDivisorsOptimized(n); optimal
// checkPrime(n);
return 0;
}