-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathgcd_of_two_no.js
70 lines (54 loc) · 1.27 KB
/
gcd_of_two_no.js
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
/*
A program to find Greatest Common Divisor(GCD) of two Numbers.
GCD of two integers is the largest positive integer that divides each of the integers.
*/
//In-Built readline module
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const getLine = (function () {
const getLineGen = (async function* () {
for await (const line of rl) {
yield line;
}
})();
return async () => (await getLineGen.next()).value;
})();
function gcd(number1, number2) {
//Smaller of the two number
var smaller_number = Math.min(number1, number2);
//Iterating from smaller number till 1
for (var i = smaller_number; i >= 1; i--) {
if (number1 % i == 0 && number2 % i == 0) {
console.log("HCF: " + i);
break;
}
}
}
const main = async () => {
//Taking Input of First Number
console.log("Enter the First Number");
var number1 = Number(await getLine());
//Taking Input of Second Number
console.log("Enter the Second Number");
var number2 = Number(await getLine());
//Calling gcd function
gcd(number1, number2);
//To close the program
process.exit(0);
};
main();
/*
Time Complexity:O(smaller(n1,n2))
Space Complexity:O(1)
Input:
5 10
Output:
5
Input:
4 7
Output:
1
*/