-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathromanNumeralsConverter.js
63 lines (55 loc) · 1.33 KB
/
romanNumeralsConverter.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
// Convert the given number into a roman numeral.
function convertToRoman(num) {
var roman = {
1: 'I',
5: 'V',
10: 'X',
50: 'L',
100: 'C',
500: 'D',
1000: 'M',
5000: 'V*',
10000: 'X*',
50000: 'L*',
100000: 'C*',
500000: 'D*',
1000000: 'M*'
};
var numLength = 0;
var numDiv = num;
var converted = [];
while(numDiv) {
var digit = numDiv%10;
var position = Math.pow(10, (numLength));
numDiv = parseInt(numDiv/10);
numLength++;
if(digit==5) {
converted[numLength-1] = roman[5 * position];
} else if(digit == 4) {
converted[numLength-1] = roman[1 * position] + roman[5*position];
} else if(digit == 9) {
converted[numLength-1] = roman[1 * position] + roman[10 * position];
} else if (digit === 0) {
converted[numLength-1] = '';
} else if (digit < 4 && digit > 0) {
converted[numLength-1] = '';
while(digit) {
converted[numLength-1] += roman[1 * position];
digit--;
}
} else if (digit > 5 && digit < 10) {
var newdigit = digit - 5;
converted[numLength-1] = roman[5*position];
while(newdigit ) {
converted[numLength-1] += roman[1 * position];
newdigit --;
}
}
}
var strNum = '';
for(var i = converted.length - 1; i>=0; i--) {
strNum+=converted[i];
}
return strNum;
}
convertToRoman(36);