-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRoman_Numerals.cpp
More file actions
88 lines (82 loc) · 2.6 KB
/
Roman_Numerals.cpp
File metadata and controls
88 lines (82 loc) · 2.6 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
#include "string";
#include "stack";
using namespace std;
class Solution {
public:
string intToRoman(int num) {
string answer;
stack <int> repr;
// stack of digits
while (num > 0) {
int temp = num % 10;
repr.push(temp);
num /= 10;
}
int place;
int digit;
string romanChar;
while (!repr.empty()) {
place = repr.size();
digit = repr.top();
string romanChar;
if (digit == 4) {
switch (place) {
case 3: romanChar = "CD";
break;
case 2: romanChar = "XL";
break;
case 1: romanChar = "IV";
break;
}
} else if (digit == 9) {
switch (place) {
case 3: romanChar = "CM";
break;
case 2: romanChar = "XC";
break;
case 1: romanChar = "IX";
break;
}
} else {
if (place == 4) {
for (int i=0; i<digit; i++) {
romanChar += "M";
}
} else if (place == 3) {
while (digit > 0) {
if (digit >= 5) {
romanChar += "D";
digit -= 5;
} else if (digit < 5) {
romanChar += "C";
digit -= 1;
}
}
} else if (place == 2) {
while (digit > 0) {
if (digit >= 5) {
romanChar += "L";
digit -= 5;
} else if (digit < 5) {
romanChar += "X";
digit -= 1;
}
}
} else if (place == 1) {
while (digit > 0) {
if (digit >= 5) {
romanChar += "V";
digit -= 5;
} else if (digit < 5) {
romanChar += "I";
digit -= 1;
}
}
}
}
answer += romanChar;
repr.pop();
}
return answer;
}
};