blob: e334895238c05c0d4fae9e93c40e977359823255 (
plain)
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
|
#include <string>
using std::string;
const char *roman_digits = "IVXLCDM";
class Solution
{
public:
string intToRoman(int num)
{
string result;
int current_digit_index = 0;
while (num != 0)
{
const int digit = num % 10;
if (digit == 9)
{
result += roman_digits[current_digit_index + 2];
result += roman_digits[current_digit_index];
}
else if (digit <= 8 && digit >= 5)
{
for (int i = 0; i < digit - 5; i++)
{
result += roman_digits[current_digit_index];
}
result += roman_digits[current_digit_index + 1];
}
else if (digit == 4)
{
result += roman_digits[current_digit_index + 1];
result += roman_digits[current_digit_index];
}
else
{
for (int i = 0; i < digit; i++)
{
result += roman_digits[current_digit_index];
}
}
num /= 10;
current_digit_index += 2;
}
return string(result.crbegin(), result.crend());
}
};
|