-
Notifications
You must be signed in to change notification settings - Fork 0
/
09_NUMEROSROMANOS.js
44 lines (37 loc) · 957 Bytes
/
09_NUMEROSROMANOS.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
function transforma(valorRomano) {
if (valorRomano === 'M') {
return 1000;
} else if (valorRomano === 'D') {
return 500;
} else if (valorRomano === 'C') {
return 100;
} else if (valorRomano === 'L') {
return 50;
} else if (valorRomano === 'X') {
return 10;
} else if (valorRomano === 'V') {
return 5;
} else if (valorRomano === 'I') {
return 1;
} else {
return 0;
}
}
function romano(roman) {
if (typeof roman !== 'string') return 0;
let result = 0;
let atual, proximo;
for (let i = 0; i < roman.length; i++) {
atual = transforma(roman[i]);
proximo = transforma(roman[i + 1]);
if (proximo > atual) {
result += proximo - atual;
i++;
} else {
result += atual;
}
}
return result;
}
const numeralRomano = 'MIV';
document.write(romano(numeralRomano));