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