-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathromantointeger.java
41 lines (36 loc) · 918 Bytes
/
romantointeger.java
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
package strings;
public class romantointeger {
public static void main(String[] args) {
// TODO Auto-generated method stub
// roman("CCXLVII");
roman("CMXVI");
// roman("CCXL");
}
public static void roman(String str) {
int sum = 0, oldvalue = Integer.MAX_VALUE, currvalue = 0;
for (int i = 0; i < str.length(); i++) {
if (str.charAt(i) == 'I') {
currvalue = 1;
} else if (str.charAt(i) == 'V') {
currvalue = 5;
} else if (str.charAt(i) == 'X') {
currvalue = 10;
} else if (str.charAt(i) == 'L') {
currvalue = 50;
} else if (str.charAt(i) == 'C') {
currvalue = 100;
} else if (str.charAt(i) == 'D') {
currvalue = 500;
} else if (str.charAt(i) == 'M') {
currvalue = 1000;
}
if (currvalue <= oldvalue) {
sum += currvalue;
} else {
sum = sum - (2 * oldvalue) + currvalue;
}
oldvalue = currvalue;
}
System.out.println(sum);
}
}