-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12_intToRoman.cpp
More file actions
53 lines (53 loc) · 1.03 KB
/
12_intToRoman.cpp
File metadata and controls
53 lines (53 loc) · 1.03 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
class Solution {
public:
string intToRoman(int num) {
string res;
while(num>=1000){
res+='M';
num-=1000;
}
if(num>=900){
res+="CM";
num-=900;
}if(num>=500){
res+='D';
num-=500;
}else if(num>=400){
res+="CD";
num-=400;
}
while(num>=100){
res+='C';
num-=100;
}
if(num>=90){
res+="XC";
num-=90;
}if(num>=50){
res+='L';
num-=50;
}else if(num>=40){
res+="XL";
num-=40;
}
while(num>=10){
res+='X';
num-=10;
}
if(num>=9){
res+="IX";
num-=9;
}if(num>=5){
res+='V';
num-=5;
}else if(num>=4){
res+="IV";
num-=4;
}
while(num>0){
res+='I';
num--;
}
return res;
}
};