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