-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRomanToDecimal.cs
More file actions
70 lines (63 loc) · 1.14 KB
/
RomanToDecimal.cs
File metadata and controls
70 lines (63 loc) · 1.14 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
using System;
using System.Collections.Generic;
namespace ConsoleApp161
{
class Test
{
public virtual int value(char r)
{
if (r =='I')
return 1;
if (r == 'V')
return 5;
if (r == 'X')
return 10;
if (r == 'L')
return 50;
if (r == 'C')
return 100;
if (r == 'D')
return 500;
if (r == 'M')
return 1000;
return -1;
}
public virtual int romanTODecimal(string str)
{
int res = 0;
for (int i = 0; i < str.Length; i++)
{
int s1 = value(str[i]);
if (i+1 < str.Length)
{
int s2 = value(str[i + 1]);
if (s1 >=s2)
{
res = res + s1;
}
else
{
res = res + s2 - s1;
i++;
}
}
else
{
res = res + s1;
i++;
}
}
return res;
}
}
class Program
{
public static void Main(string[] args)
{
string str = "MCMIV";
Test test = new Test();
var t = test.romanTODecimal(str);
Console.WriteLine(t);
}
}
}