Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 95 additions & 0 deletions cpp/0012-integer-to-roman.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
/* Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M.

Symbol Value
I 1
V 5
X 10
L 50
C 100
D 500
M 1000
For example, 2 is written as II in Roman numeral, just two one's added together. 12 is written as XII, which is simply X + II. The number 27 is written as XXVII, which is XX + V + II.

Roman numerals are usually written largest to smallest from left to right. However, the numeral for four is not IIII. Instead, the number four is written as IV. Because the one is before the five we subtract it making four. The same principle applies to the number nine, which is written as IX. There are six instances where subtraction is used:

I can be placed before V (5) and X (10) to make 4 and 9.
X can be placed before L (50) and C (100) to make 40 and 90.
C can be placed before D (500) and M (1000) to make 400 and 900.
Given an integer, convert it to a roman numeral.
Example
Input: num = 1994
Output: "MCMXCIV"
Explanation: M = 1000, CM = 900, XC = 90 and IV = 4. */

class Solution {
public:
string intToRoman(int num) {
string s="";
while(num>=1000)
{
s+="M";
num=num-1000;
}
if(num>=900)
{
s+="CM";
num=num-900;
}
while(num>=500)
{
s+="D";
num=num-500;
}
if(num>=400)
{
s+="CD";
num=num-400;
}
while(num>=100)
{
s+="C";
num=num-100;
}
if(num>=90)
{
s+="XC";
num=num-90;
}
while(num>=50)
{
s+="L";
num=num-50;
}
if(num>=40)
{
s+="XL";
num=num-40;
}
while(num>=10)
{
s+="X";
num=num-10;
}
if(num>=9)
{
s+="IX";
num=num-9;
}
while(num>=5)
{
s+="V";
num=num-5;
}
if(num>=4)
{
s+="IV";
num=num-4;
}
while(num>=1)
{
s+="I";
num=num-1;
}
return s;
}
};