Roman numerals/Decode: Difference between revisions

Add a declarative way of achieving the transformation
(EasyLang)
(Add a declarative way of achieving the transformation)
(64 intermediate revisions by 29 users not shown)
Line 14:
The Roman numeral for '''1666''',   '''MDCLXVI''',   uses each letter in descending order.
<br><br>
 
=={{header|11l}}==
{{trans|Python}}
 
<syntaxhighlight lang="11l">V roman_values = [(‘I’, 1), (‘IV’, 4), (‘V’, 5), (‘IX’, 9), (‘X’, 10),
(‘XL’, 40), (‘L’, 50), (‘XC’, 90), (‘C’, 100),
(‘CD’, 400), (‘D’, 500), (‘CM’, 900), (‘M’, 1000)]
 
F roman_value(=roman)
V total = 0
L(symbol, value) reversed(:roman_values)
L roman.starts_with(symbol)
total += value
roman = roman[symbol.len..]
R total
 
L(value) [‘MCMXC’, ‘MMVIII’, ‘MDCLXVI’]
print(value‘ = ’roman_value(value))</syntaxhighlight>
 
{{out}}
<pre>
MCMXC = 1990
MMVIII = 2008
MDCLXVI = 1666
</pre>
 
=={{header|360 Assembly}}==
<langsyntaxhighlight lang="360asm">* Roman numerals Decode - 17/04/2019
ROMADEC CSECT
USING ROMADEC,R13 base register
Line 83 ⟶ 108:
XDEC DS CL12
REGEQU
END ROMADEC </langsyntaxhighlight>
{{out}}
<pre>
Line 102 ⟶ 127:
The Roman numeral must be in uppercase letters.
 
<langsyntaxhighlight lang="8080asm"> org 100h
jmp test
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 211 ⟶ 236:
nl: db 13,10,'$'
bufdef: db 16,0
buf: ds 17</langsyntaxhighlight>
 
=={{header|Action!}}==
<syntaxhighlight lang="action!">CARD FUNC DecodeRomanDigit(CHAR c)
IF c='I THEN RETURN (1)
ELSEIF c='V THEN RETURN (5)
ELSEIF c='X THEN RETURN (10)
ELSEIF c='L THEN RETURN (50)
ELSEIF c='C THEN RETURN (100)
ELSEIF c='D THEN RETURN (500)
ELSEIF c='M THEN RETURN (1000)
FI
RETURN (0)
 
CARD FUNC DecodeRomanNumber(CHAR ARRAY s)
CARD res,curr,prev
BYTE i
 
res=0 prev=0 i=s(0)
WHILE i>0
DO
curr=DecodeRomanDigit(s(i))
IF curr<prev THEN
res==-curr
ELSE
res==+curr
FI
prev=curr
i==-1
OD
RETURN (res)
 
PROC Test(CHAR ARRAY s)
CARD n
n=DecodeRomanNumber(s)
PrintF("%S=%U%E",s,n)
RETURN
 
PROC Main()
Test("MCMXC")
Test("MMVIII")
Test("MDCLXVI")
Test("MMMDCCCLXXXVIII")
Test("MMMCMXCIX")
RETURN</syntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Roman_numerals_decode.png Screenshot from Atari 8-bit computer]
<pre>
MCMXC=1990
MMVIII=2008
MDCLXVI=1666
MMMDCCCLXXXVIII=3888
MMMCMXCIX=3999
</pre>
 
=={{header|Ada}}==
 
<langsyntaxhighlight Adalang="ada">Pragma Ada_2012;
Pragma Assertion_Policy( Check );
 
Line 366 ⟶ 445:
Ada.Text_IO.Put_Line("Testing complete.");
End Test_Roman_Numerals;
</syntaxhighlight>
</lang>
 
{{out}}
Line 389 ⟶ 468:
{{works with|ALGOL 68G|Any - tested with release 2.2.0}}
Note: roman to int will handle multiple subtraction, e.g. IIIIX for 6.
<langsyntaxhighlight Algol68lang="algol68"> PROC roman to int = (STRING roman) INT:
BEGIN
PROC roman digit value = (CHAR roman digit) INT:
Line 436 ⟶ 515:
printf(($g(5), 1x, g(5), 1x$, expected output OF roman test[i], output));
printf(($b("ok", "not ok"), 1l$, output = expected output OF roman test[i]))
OD</langsyntaxhighlight>
 
=={{header|ALGOL W}}==
<langsyntaxhighlight lang="algolw">begin
% decodes a roman numeral into an integer %
% there must be at least one blank after the numeral %
Line 533 ⟶ 612:
testRoman( "MDCLXVI" );
 
end.</langsyntaxhighlight>
{{out}}
<pre>
Line 568 ⟶ 647:
 
===Java===
<langsyntaxhighlight lang="java">/* Parse Roman Numerals
Nigel Galloway March 16th., 2012
Line 606 ⟶ 685:
FiveHund: 'D';
Thousand: 'M' ;
NEWLINE: '\r'? '\n' ;</langsyntaxhighlight>
Using this test data:
<pre>
Line 659 ⟶ 738:
MMXII = 2012
</pre>
 
=={{header|APL}}==
{{works with|Dyalog APL}}
<syntaxhighlight lang="apl">fromRoman←{
rmn←(⎕A,⎕A,'*')[(⎕A,⎕UCS 96+⍳26)⍳⍵] ⍝ make input uppercase
dgt←↑'IVXLCDM' (1 5 10 50 100 500 1000) ⍝ values of roman digits
~rmn∧.∊⊂dgt[1;]:⎕SIGNAL 11 ⍝ domain error if non-roman input
map←dgt[2;dgt[1;]⍳rmn] ⍝ map digits to values
+/map×1-2×(2</map),0 ⍝ subtractive principle
}</syntaxhighlight>
 
{{out}}
 
<pre> fromRoman¨ 'MCMXC' 'MMVIII' 'MDCLXVI' 'MMXXI'
1990 2008 1666 2021</pre>
 
=={{header|AppleScript}}==
Line 665 ⟶ 759:
(Functional ES5 version)
{{trans|Haskell}}
<syntaxhighlight lang="applescript">
<lang AppleScript>-- romanValue :: String -> Int
------------- INTEGER VALUE OF A ROMAN STRING ------------
 
-- romanValue :: String -> Int
on romanValue(s)
script roman
Line 675 ⟶ 772:
-- toArabic :: [Char] -> Int
on toArabic(xs)
-- transcribe :: (String, Number) -> Maybe (Number, [String])
script transcribe
-- If this glyph:valueon |λ|(pair matches the head of the list)
-- return the value andset the{r, tailv} ofto the listpair
-- transcribe :: (String, Number)if ->isPrefixOf(characters Maybeof (Numberr, [String]xs) then
on |λ|(lstPair)
set lstR to characters of (item 1 of lstPair)
if isPrefixOf(lstR, xs) then
-- Value of this matching glyph, with any remaining glyphs
{item 2 of lstPairv, drop(length of lstRr, xs)}
else
{}
Line 690 ⟶ 786:
end script
if 0 < length of xs > 0 then
set lstParseparsed to concatMap(transcribe, mapping)
(item 1 of lstParseparsed) + toArabic(item 2 of lstParseparsed)
else
0
Line 702 ⟶ 798:
end romanValue
 
-- TEST ---------------------------------------------- TEST -------------------------
on run
map(romanValue, {"MCMXC", "MDCLXVI", "MMVIII"})
Line 710 ⟶ 806:
 
 
-- GENERIC FUNCTIONS --------------------------------------- GENERIC FUNCTIONS -------------------
 
-- concatMap :: (a -> [b]) -> [a] -> [b]
on concatMap(f, xs)
set lst to {}
set lng to length of xs
set acc to {}
tell mReturn(f)
repeat with i from 1 to lng
set lstacc to (lstacc & (|λ|(item i of xs, i, xs))
end repeat
end tell
if {text, string} contains class of xs then
return lst
acc as text
else
acc
end if
end concatMap
 
 
-- drop :: Int -> a -> a
on-- drop(n, :: Int -> [a] -> [a)]
-- drop :: Int -> String -> String
if n < length of a then
on drop(n, xs)
if class of a is text then
set c to text (n + 1) thru -1class of axs
if script is not c then
if string is not c then
if n < length of xs then
items (1 + n) thru -1 of xs
else
{}
end if
else
itemsif (n +< 1)length thruof -1 ofxs athen
text (1 + n) thru -1 of xs
else
""
end if
end if
else
{}take(n, xs) -- consumed
return xs
end if
end drop
 
 
-- isPrefixOf :: [a] -> [a] -> Bool
-- isPrefixOf :: String -> String -> Bool
on isPrefixOf(xs, ys)
-- isPrefixOf takes two lists or strings and returns
if length of xs = 0 then
-- true if and only if the first is a prefix of the second.
true
script go
on |λ|(xs, ys)
set intX to length of xs
if intX < 1 then
true
else if intX > length of ys then
false
else if class of xs is string then
(offset of xs in ys) = 1
else
set {xxt, yyt} to {uncons(xs), uncons(ys)}
((item 1 of xxt) = (item 1 of yyt)) and ¬
|λ|(item 2 of xxt, item 2 of yyt)
end if
end |λ|
end script
go's |λ|(xs, ys)
end isPrefixOf
 
 
-- length :: [a] -> Int
on |length|(xs)
set c to class of xs
if list is c or string is c then
length of xs
else
if(2 length^ of29 ys- =1) 0-- then(maxInt - simple proxy for non-finite)
false
else
set {x, xt} to uncons(xs)
set {y, yt} to uncons(ys)
(x = y) and isPrefixOf(xt, yt)
end if
end if
end isPrefixOf|length|
 
 
-- map :: (a -> b) -> [a] -> [b]
Line 763 ⟶ 897:
end tell
end map
 
 
-- Lift 2nd class handler function into 1st class script wrapper
Line 775 ⟶ 910:
end if
end mReturn
 
 
-- uncons :: [a] -> Maybe (a, [a])
on uncons(xs)
ifset lengthlng ofto |length|(xs > 0 then)
if 0 = lng then
{item 1 of xs, rest of xs}
else
missing value
else
if (2 ^ 29 - 1) as integer > lng then
if class of xs is string then
set cs to text items of xs
{item 1 of cs, rest of cs}
else
{item 1 of xs, rest of xs}
end if
else
set nxt to take(1, xs)
if {} is nxt then
missing value
else
{item 1 of nxt, xs}
end if
end if
end if
end uncons</langsyntaxhighlight>
{{Out}}
<syntaxhighlight lang AppleScript="applescript">{1990, 1666, 2008}</langsyntaxhighlight>
 
 
====Fold right – subtracting or adding====
{{Works with|Yosemite onwards}}
{{trans|Haskell}}
<langsyntaxhighlight AppleScriptlang="applescript">use framework "Foundation"
 
----------- INTEGER VALUE OF ROMAN NUMBER STRING ---------------------------------------
 
-- fromRoman :: String -> Int
on fromRoman(s)
script subtractIfLower
on |λ|(rnl, Lrn)
set {r, n} to rn
if Ll ≥ r then -- Digit values that increase (rightL to leftR),
{Ll, n + Ll} -- are (added)
else
{Ll, n - Ll} -- Digit values that go down, are: subtracted.
end if
end |λ|
end script
snd(item 2 of foldr(subtractIfLower, {0, 0}, map(my charVal, characters of s)))¬
map(my charVal, characters of s))
end fromRoman
 
 
-- charVal :: Char -> Int
on charVal(C)
set Vv to keyValuelookup(toUpper({I:1, V:5, X:10, L:50, C:100, D:500, M:1000}), ¬
{I:1, |V|:5, X:10, |L|:50, C:100, D:500, M:1000})
toUpper(C))
if nothingmissing ofvalue Vis v then
0
else
just of Vv
end if
end charVal
 
 
-- TEST -----------------------------------------------------------------------
--------------------------- TEST -------------------------
on run
map(fromRoman, {"MDCLXVI", "MCMXC", "MMVIII", "MMXVI", "MMXVII"})¬
{"MDCLXVI", "MCMXC", "MMVIII", "MMXVI", "MMXXI"})
--> {1666, 1990, 2008, 2016, 20172021}
end run
 
 
-- GENERIC FUNCTIONS --------------------------------------- GENERIC FUNCTIONS -------------------
 
-- foldr :: (a -> b -> ab) -> ab -> [ba] -> ab
on foldr(f, startValue, xs)
tell mReturn(f)
set Vv to startValue
set lng to length of xs
repeat with I from lng to 1 by -1
set Vv to |λ|(V, item I of xs, I, xsv)
end repeat
return Vv
end tell
end foldr
 
 
-- keyValue :: Record -> String -> Maybe String
-- lookup :: a -> Dict -> Maybe b
on keyValue(rec, strKey)
on lookup(k, dct)
-- Just the value of k in the dictionary,
-- or missing value if k is not found.
set ca to current application
set Vv to (ca's NSDictionary's dictionaryWithDictionary:recdct)'s objectForKey:strKey¬
if V is not missing value thenobjectForKey:k
if missing value ≠ v then
{nothing:false, just:item 1 of ((ca's NSArray's arrayWithObject:V) as list)}
item 1 of ((ca's NSArray's arrayWithObject:v) as list)
else
{nothing:true}missing value
end if
end keyValuelookup
 
 
-- map :: (a -> b) -> [a] -> [b]
on map(f, xs)
-- The list obtained by applying f
-- to each element of xs.
tell mReturn(f)
set lng to length of xs
Line 867 ⟶ 1,028:
end map
 
 
-- Lift 2nd class handler function into 1st class script wrapper
-- Lift 2nd class handler function into 1st class
-- script wrapper
-- mReturn :: Handler -> Script
on mReturn(f)
Line 879 ⟶ 1,042:
end mReturn
 
-- snd :: (a, b) -> b
on snd(xs)
if class of xs is list and length of xs = 2 then
item 2 of xs
else
missing value
end if
end snd
 
-- toUpper :: String -> String
on toUpper(str)
set ca totell current application
((ca'sits (NSString's stringWithString:(str)))'s ¬
uppercaseStringWithLocale:¬
uppercaseStringWithLocale:(ca's NSLocale's currentLocale())) as text
(its NSLocale's currentLocale())) as text
end toUpper</lang>
end tell
end toUpper</syntaxhighlight>
{{Out}}
<langsyntaxhighlight AppleScriptlang="applescript">{1666, 1990, 2008, 2016, 20172021}</langsyntaxhighlight>
 
=={{header|ArturoBASIC}}==
==={{header|Applesoft BASIC}}===
{{trans|BBC BASIC}}
<syntaxhighlight lang="gwbasic"> 10 LET R$ = "MCMXCIX"
20 GOSUB 100 PRINT "ROMAN NUMERALS DECODED"
30 LET R$ = "MMXII"
40 GOSUB 100
50 LET R$ = "MDCLXVI"
60 GOSUB 100
70 LET R$ = "MMMDCCCLXXXVIII"
80 GOSUB 100
90 END
100 PRINT M$R$,
110 LET M$ = CHR$ (13)
120 GOSUB 150"ROMAN NUMERALS DECODE given R$"
130 PRINT N;
140 RETURN
150 IF NOT C THEN GOSUB 250INITIALIZE
160 LET J = 0
170 LET N = 0
180 FOR I = LEN (R$) TO 1 STEP - 1
190 LET P = J
200 FOR J = 1 TO C
210 IF MID$ (C$,J,1) < > MID$ (R$,I,1) THEN NEXT J
220 IF J < = C THEN N = N + R(J) * ((J > = P) * 2 - 1)
230 NEXT I
240 RETURN
250 READ C$
260 LET C = LEN (C$)
270 DIM R(C)
280 FOR I = 0 TO C
290 READ R(I)
300 NEXT I
310 RETURN
320 DATA "IVXLCDM",0,1,5,10,50,100,500,1000</syntaxhighlight>
==={{header|BASIC256}}===
<syntaxhighlight lang="freebasic">function romToDec (roman$)
num = 0
prenum = 0
for i = length(roman$) to 1 step -1
x$ = mid(roman$, i, 1)
n = 0
if x$ = "M" then n = 1000
if x$ = "D" then n = 500
if x$ = "C" then n = 100
if x$ = "L" then n = 50
if x$ = "X" then n = 10
if x$ = "V" then n = 5
if x$ = "I" then n = 1
 
if n < preNum then num -= n else num += n
<lang arturo>symbols: #{ M: 1000, D: 500, C: 100, L: 50, X: 10, V: 5, I: 1 }
preNum = n
next i
 
return num
fromRoman: @(roman){
end function
ret: 0
loop [range 0 [size roman]-2] {
valueA: symbols.[roman.[&]]
valueB: symbols.[roman.[&+1]]
if valueA<valueB { ret: ret-valueA } { ret: ret+valueA }
}
return ret + symbols.[last|chars roman]
}
 
#Testing
loop #("MCMXC" "MMVIII" "MDCLXVI") -> print & + " -> " + [fromRoman &]
print "MCMXCIX = "; romToDec("MCMXCIX") #1999
</lang>
print "MDCLXVI = "; romToDec("MDCLXVI") #1666
print "XXV = "; romToDec("XXV") #25
print "CMLIV = "; romToDec("CMLIV") #954
print "MMXI = "; romToDec("MMXI") #2011</syntaxhighlight>
 
==={{header|BBC BASIC}}===
<syntaxhighlight lang="bbcbasic"> PRINT "MCMXCIX", FNromandecode("MCMXCIX")
PRINT "MMXII", FNromandecode("MMXII")
PRINT "MDCLXVI", FNromandecode("MDCLXVI")
PRINT "MMMDCCCLXXXVIII", FNromandecode("MMMDCCCLXXXVIII")
END
DEF FNromandecode(roman$)
LOCAL i%, j%, p%, n%, r%()
DIM r%(7) : r%() = 0,1,5,10,50,100,500,1000
FOR i% = LEN(roman$) TO 1 STEP -1
j% = INSTR("IVXLCDM", MID$(roman$,i%,1))
IF j%=0 ERROR 100, "Invalid character"
IF j%>=p% n% += r%(j%) ELSE n% -= r%(j%)
p% = j%
NEXT
= n%</syntaxhighlight>
{{out}}
<pre>MCMXCIX 1999
MMXII 2012
MDCLXVI 1666
MMMDCCCLXXXVIII 3888</pre>
 
==={{header|Chipmunk Basic}}===
<pre>MCMXC -> 1990
====Through IF-THEN statements====
MMVIII -> 2008
{{works with|Chipmunk Basic|3.6.4}}
{{works with|Applesoft BASIC}}
{{works with|MSX_BASIC}}
{{works with|QBasic}}
<syntaxhighlight lang="qbasic">100 cls : rem 100 home for Applesoft BASIC
110 roman$ = "MCMXCIX" : print roman$,"=> "; : gosub 170 : print decimal '1999
120 roman$ = "XXV" : print roman$,"=> "; : gosub 170 : print decimal '25
130 roman$ = "CMLIV" : print roman$,"=> "; : gosub 170 : print decimal '954
140 roman$ = "MMXI" : print roman$,"=> "; : gosub 170 : print decimal '2011
150 end
160 rem Decode from roman
170 decimal = 0
180 predecimal = 0
190 for i = len(roman$) to 1 step -1
200 x$ = mid$(roman$,i,1)
210 if x$ = "M" then n = 1000 : goto 280
220 if x$ = "D" then n = 500 : goto 280
230 if x$ = "C" then n = 100 : goto 280
240 if x$ = "L" then n = 50 : goto 280
250 if x$ = "X" then n = 10 : goto 280
260 if x$ = "V" then n = 5 : goto 280
270 if x$ = "I" then n = 1
280 if n < predecimal then decimal = decimal-n
285 if n >= predecimal then decimal = decimal+n
290 predecimal = n
300 next i
310 return</syntaxhighlight>
 
====Through SELECT CASE statement====
{{works with|Chipmunk Basic|3.6.4}}
<syntaxhighlight lang="qbasic">100 cls
110 roman$ = "MCMXCIX" : print roman$,"=> "; : gosub 170 : print decimal '1999
120 roman$ = "XXV" : print roman$,"=> "; : gosub 170 : print decimal '25
130 roman$ = "CMLIV" : print roman$,"=> "; : gosub 170 : print decimal '954
140 roman$ = "MMXI" : print roman$,"=> "; : gosub 170 : print decimal '2011
150 end
160 rem Decode from roman
170 decimal = 0
180 predecimal = 0
190 for i = len(roman$) to 1 step -1
200 x$ = mid$(roman$,i,1)
210 select case x$
220 case "M" : n = 1000
230 case "D" : n = 500
240 case "C" : n = 100
250 case "L" : n = 50
260 case "X" : n = 10
270 case "V" : n = 5
280 case "I" : n = 1
290 case else : print "not a roman numeral" : end
300 end select
310 if n < predecimal then decimal = decimal-n else decimal = decimal+n
320 predecimal = n
330 next i
340 return</syntaxhighlight>
 
==={{header|FreeBASIC}}===
<syntaxhighlight lang="freebasic">' FB 1.05.0 Win64
 
Function romanDecode(roman As Const String) As Integer
If roman = "" Then Return 0 '' zero denotes invalid roman number
Dim roman1(0 To 2) As String = {"MMM", "MM", "M"}
Dim roman2(0 To 8) As String = {"CM", "DCCC", "DCC", "DC", "D", "CD", "CCC", "CC", "C"}
Dim roman3(0 To 8) As String = {"XC", "LXXX", "LXX", "LX", "L", "XL", "XXX", "XX", "X"}
Dim roman4(0 To 8) As String = {"IX", "VIII", "VII", "VI", "V", "IV", "III", "II", "I"}
Dim As Integer i, value = 0, length = 0
Dim r As String = UCase(roman)
 
For i = 0 To 2
If Left(r, Len(roman1(i))) = roman1(i) Then
value += 1000 * (3 - i)
length = Len(roman1(i))
r = Mid(r, length + 1)
length = 0
Exit For
End If
Next
 
For i = 0 To 8
If Left(r, Len(roman2(i))) = roman2(i) Then
value += 100 * (9 - i)
length = Len(roman2(i))
r = Mid(r, length + 1)
length = 0
Exit For
End If
Next
 
For i = 0 To 8
If Left(r, Len(roman3(i))) = roman3(i) Then
value += 10 * (9 - i)
length = Len(roman3(i))
r = Mid(r, length + 1)
length = 0
Exit For
End If
Next
 
For i = 0 To 8
If Left(r, Len(roman4(i))) = roman4(i) Then
value += 9 - i
length = Len(roman4(i))
Exit For
End If
Next
' Can't be a valid roman number if there are any characters left
If Len(r) > length Then Return 0
Return value
End Function
 
Dim a(2) As String = {"MCMXC", "MMVIII" , "MDCLXVI"}
For i As Integer = 0 To 2
Print a(i); Tab(8); " =>"; romanDecode(a(i))
Next
 
Print
Print "Press any key to quit"
Sleep</syntaxhighlight>
{{out}}
<pre>MCMXC => 1990
MMVIII => 2008
MDCLXVI => 1666</pre>
 
==={{header|FutureBasic}}===
<syntaxhighlight lang="futurebasic">window 1
 
local fn RomantoDecimal( roman as CFStringRef ) as long
long i, n, preNum = 0, num = 0
for i = len(roman) - 1 to 0 step -1
n = 0
select ( fn StringCharacterAtIndex( roman, i ) )
case _"M" : n = 1000
case _"D" : n = 500
case _"C" : n = 100
case _"L" : n = 50
case _"X" : n = 10
case _"V" : n = 5
case _"I" : n = 1
end select
if ( n < preNum ) then num = num - n else num = num + n
preNum = n
next
end fn = num
 
print @" MCMXC = "; fn RomantoDecimal( @"MCMXC" )
print @" MMVIII = "; fn RomantoDecimal( @"MMVIII" )
print @" MMXVI = "; fn RomantoDecimal( @"MMXVI" )
print @"MDCLXVI = "; fn RomantoDecimal( @"MDCLXVI" )
print @" MCMXIV = "; fn RomantoDecimal( @"MCMXIV" )
print @" DXIII = "; fn RomantoDecimal( @"DXIII" )
print @" M = "; fn RomantoDecimal( @"M" )
print @" DXIII = "; fn RomantoDecimal( @"DXIII" )
print @" XXXIII = "; fn RomantoDecimal( @"XXXIII" )
 
HandleEvents</syntaxhighlight>
{{out}}
<pre> MCMXC = 1990
MMVIII = 2008
MMXVI = 2016
MDCLXVI = 1666
MCMXIV = 1914
DXIII = 513
M = 1000
DXIII = 513
XXXIII = 33</pre>
 
==={{header|Gambas}}===
<syntaxhighlight lang="gambas">'This code will create a GUI Form and Objects and carry out the Roman Numeral convertion as you type
'The input is case insensitive
'A basic check for invalid charaters is made
 
hTextBox As TextBox 'To allow the creation of a TextBox
hValueBox As ValueBox 'To allow the creation of a ValueBox
 
Public Sub Form_Open() 'Form opens..
 
SetUpForm 'Go to the SetUpForm Routine
hTextBox.text = "MCMXC" 'Put a Roman numeral in the TextBox
 
End
 
Public Sub TextBoxInput_Change() 'Each time the TextBox text changes..
Dim cRomanN As Collection = ["M": 1000, "D": 500, "C": 100, "L": 50, "X": 10, "V": 5, "I": 1] 'Collection of nemerals e.g 'M' = 1000
Dim cMinus As Collection = ["IV": -2, "IX": -2, "XL": -20, "XC": - 20, "CD": -200, "CM": -200] 'Collection of the 'one less than' numbers e.g. 'IV' = 4
Dim sClean, sTemp As String 'Various string variables
Dim siCount As Short 'Counter
Dim iTotal As Integer 'Stores the total of the calculation
 
hTextBox.Text = UCase(hTextBox.Text) 'Make any text in the TextBox upper case
 
For siCount = 1 To Len(hTextBox.Text) 'Loop through each character in the TextBox
If InStr("MDCLXVI", Mid(hTextBox.Text, siCount, 1)) Then 'If a Roman numeral exists then..
sClean &= Mid(hTextBox.Text, siCount, 1) 'Put it in 'sClean' (Stops input of non Roman numerals)
End If
Next
 
hTextBox.Text = sClean 'Put the now clean text in the TextBox
 
For siCount = 1 To Len(hTextBox.Text) 'Loop through each character in the TextBox
iTotal += cRomanN[Mid(hTextBox.Text, siCount, 1)] 'Total up all the characters, note 'IX' will = 11 not 9
Next
 
For Each sTemp In cMinus 'Loop through each item in the cMinus Collection
If InStr(sClean, cMinus.Key) > 0 Then iTotal += Val(sTemp) 'If a 'Minus' value is in the string e.g. 'IX' which has been calculated at 11 subtract 2 = 9
Next
 
hValueBox.text = iTotal 'Display the total
 
End
 
Public Sub SetUpForm() 'Create the Objects for the Form
Dim hLabel1, hLabel2 As Label 'For 2 Labels
 
Me.height = 150 'Form Height
Me.Width = 300 'Form Width
Me.Padding = 20 'Form padding (border)
Me.Text = "Roman Numeral converter" 'Text in Form header
Me.Arrangement = Arrange.Vertical 'Form arrangement
 
hLabel1 = New Label(Me) 'Create a Label
hLabel1.Height = 21 'Label Height
hLabel1.expand = True 'Expand the Label
hLabel1.Text = "Enter a Roman numeral" 'Put text in the Label
 
hTextBox = New TextBox(Me) As "TextBoxInput" 'Set up a TextBox with an Event Label
hTextBox.Height = 21 'TextBox height
hTextBox.expand = True 'Expand the TextBox
 
hLabel2 = New Label(Me) 'Create a Label
hLabel2.Height = 21 'Label Height
hLabel2.expand = True 'Expand the Label
hLabel2.Text = "The decimal equivelent is: -" 'Put text in the Label
 
hValueBox = New ValueBox(Me) 'Create a ValueBox
hValueBox.Height = 21 'ValuBox Height
hValueBox.expand = True 'Expand the ValueBox
hValueBox.ReadOnly = True 'Set ValueBox to Read Only
 
End</syntaxhighlight>
'''[http://www.cogier.com/gambas/Roman%20Numeral%20converter.png Click here for image of running code]'''
 
==={{header|GW-BASIC}}===
The [[#Chipmunk_Basic|Chipmunk Basic]] [[#Through_IF-THEN_statements|through IF-THEN statements]] solution works without any changes.
 
==={{header|Liberty BASIC}}===
As Fortran & PureBasic.
<syntaxhighlight lang="lb"> print "MCMXCIX = "; romanDec( "MCMXCIX") '1999
print "MDCLXVI = "; romanDec( "MDCLXVI") '1666
print "XXV = "; romanDec( "XXV") '25
print "CMLIV = "; romanDec( "CMLIV") '954
print "MMXI = "; romanDec( "MMXI") '2011
 
end
 
function romanDec( roman$)
arabic =0
lastval =0
 
for i = len( roman$) to 1 step -1
select case upper$( mid$( roman$, i, 1))
case "M"
n = 1000
case "D"
n = 500
case "C"
n = 100
case "L"
n = 50
case "X"
n = 10
case "V"
n = 5
case "I"
n = 1
case else
n = 0
end select
 
if n <lastval then
arabic =arabic -n
else
arabic =arabic +n
end if
 
lastval =n
next
 
romanDec =arabic
end function</syntaxhighlight>
{{out}}
<pre>MCMXCIX = 1999
MDCLXVI = 1666
XXV = 25
CMLIV = 954
MMXI = 2011</pre>
 
==={{header|MSX Basic}}===
The [[#Chipmunk_Basic|Chipmunk Basic]] [[#Through_IF-THEN_statements|through IF-THEN statements]] solution works without any changes.
 
==={{header|PureBasic}}===
<syntaxhighlight lang="purebasic">Procedure romanDec(roman.s)
Protected i, n, lastval, arabic
For i = Len(roman) To 1 Step -1
Select UCase(Mid(roman, i, 1))
Case "M"
n = 1000
Case "D"
n = 500
Case "C"
n = 100
Case "L"
n = 50
Case "X"
n = 10
Case "V"
n = 5
Case "I"
n = 1
Default
n = 0
EndSelect
If (n < lastval)
arabic - n
Else
arabic + n
EndIf
lastval = n
Next
ProcedureReturn arabic
EndProcedure
 
If OpenConsole()
PrintN(Str(romanDec("MCMXCIX"))) ;1999
PrintN(Str(romanDec("MDCLXVI"))) ;1666
PrintN(Str(romanDec("XXV"))) ;25
PrintN(Str(romanDec("CMLIV"))) ;954
PrintN(Str(romanDec("MMXI"))) ;2011
Print(#CRLF$ + #CRLF$ + "Press ENTER to exit"): Input()
CloseConsole()
EndIf</syntaxhighlight>
{{out}}
<pre>1999
1666
25
954
2011</pre>
 
==={{header|QBasic}}===
<syntaxhighlight lang="qbasic">FUNCTION romToDec (roman$)
num = 0
prenum = 0
FOR i = LEN(roman$) TO 1 STEP -1
x$ = MID$(roman$, i, 1)
n = 0
IF x$ = "M" THEN n = 1000
IF x$ = "D" THEN n = 500
IF x$ = "C" THEN n = 100
IF x$ = "L" THEN n = 50
IF x$ = "X" THEN n = 10
IF x$ = "V" THEN n = 5
IF x$ = "I" THEN n = 1
 
IF n < preNum THEN num = num - n ELSE num = num + n
preNum = n
NEXT i
 
romToDec = num
END FUNCTION
 
!Testing
PRINT "MCMXCIX = "; romToDec("MCMXCIX") '1999
PRINT "MDCLXVI = "; romToDec("MDCLXVI") '1666
PRINT "XXV = "; romToDec("XXV") '25
PRINT "CMLIV = "; romToDec("CMLIV") '954
PRINT "MMXI = "; romToDec("MMXI") '2011</syntaxhighlight>
 
==={{header|QB64}}===
<syntaxhighlight lang="qb64">SCREEN _NEWIMAGE(400, 600, 32)
 
 
CLS
 
 
Main:
'------------------------------------------------
' CALLS THE romToDec FUNCTION WITH THE ROMAN
' NUMERALS AND RETURNS ITS DECIMAL EQUIVELENT.
'
PRINT "ROMAN NUMERAL TO DECIMAL CONVERSION"
PRINT: PRINT
 
PRINT "MDCCIV = "; romToDec("MDCCIV") '1704
PRINT "MCMXC = "; romToDec("MCMXC") '1990
PRINT "MMVIII = "; romToDec("MMVIII") '2008
PRINT "MDCLXVI = "; romToDec("MDCLXVI") '1666
PRINT: PRINT
PRINT "Here are other solutions not from the TASK:"
PRINT "MCMXCIX = "; romToDec("MCMXCIX") '1999
PRINT "XXV = "; romToDec("XXV") '25
PRINT "CMLIV = "; romToDec("CMLIV") '954
PRINT "MMXI = "; romToDec("MMXI") '2011
PRINT "MMIIIX = "; romToDec("MMIIIX") '2011
PRINT: PRINT
PRINT "2011 can be written either as MMXI or MMIIIX"
PRINT "With the IX = 9, MMIIIX is also 2011."
PRINT "2011 IS CORRECT (MM=2000 + II = 2 + IX = 9)"
 
END
 
 
 
FUNCTION romToDec (roman AS STRING)
'------------------------------------------------------
' FUNCTION THAT CONVERTS ANY ROMAN NUMERAL TO A DECIMAL
'
prenum = 0: num = 0
LN = LEN(roman)
FOR i = LN TO 1 STEP -1
x$ = MID$(roman, i, 1)
n = 1000
SELECT CASE x$
CASE "M": n = n / 1
CASE "D": n = n / 2
CASE "C": n = n / 10
CASE "L": n = n / 20
CASE "X": n = n / 100
CASE "V": n = n / 200
CASE "I": n = n / n
CASE ELSE: n = 0
END SELECT
IF n < prenum THEN num = num - n ELSE num = num + n
prenum = n
NEXT i
 
romToDec = num
 
END FUNCTION</syntaxhighlight>
 
==={{header|Run BASIC}}===
<syntaxhighlight lang="runbasic">print "MCMXCIX = "; romToDec( "MCMXCIX") '1999
print "MDCLXVI = "; romToDec( "MDCLXVI") '1666
print "XXV = "; romToDec( "XXV") '25
print "CMLIV = "; romToDec( "CMLIV") '954
print "MMXI = "; romToDec( "MMXI") '2011
 
function romToDec(roman$)
for i = len(roman$) to 1 step -1
x$ = mid$(roman$, i, 1)
n = 0
if x$ = "M" then n = 1000
if x$ = "D" then n = 500
if x$ = "C" then n = 100
if x$ = "L" then n = 50
if x$ = "X" then n = 10
if x$ = "V" then n = 5
if x$ = "I" then n = 1
if n < preNum then num = num - n else num = num + n
preNum = n
next
romToDec =num
end function</syntaxhighlight>
 
==={{header|TechBASIC}}===
<syntaxhighlight lang="techbasic">Main:
!------------------------------------------------
! CALLS THE romToDec FUNCTION WITH THE ROMAN
! NUMERALS AND RETURNS ITS DECIMAL EQUIVELENT.
!
PRINT "MCMXC = "; romToDec("MCMXC") !1990
PRINT "MMVIII = "; romToDec("MMVIII") !2008
PRINT "MDCLXVI = "; romToDec("MDCLXVI") !1666
PRINT:PRINT
PRINT "Here are other solutions not from the TASK:"
PRINT "MCMXCIX = "; romToDec("MCMXCIX") !1999
PRINT "XXV = "; romToDec("XXV") !25
PRINT "CMLIV = "; romToDec("CMLIV") !954
PRINT "MMXI = "; romToDec("MMXI") !2011
PRINT:PRINT
PRINT "Without error checking, this also is 2011, but is wrong"
PRINT "MMIIIX = "; romToDec("MMIIIX") !INVAID, 2011
STOP
 
 
FUNCTION romToDec(roman AS STRING) AS INTEGER
!------------------------------------------------------
! FUNCTION THAT CONVERTS ANY ROMAN NUMERAL TO A DECIMAL
!
prenum=0!num=0
ln=LEN(roman)
FOR i=ln TO 1 STEP -1
x$=MID(roman,i,1)
n=1000
SELECT CASE x$
CASE "M":n=n/1
CASE "D":n=n/2
CASE "C":n=n/10
CASE "L":n=n/20
CASE "X":n=n/100
CASE "V":n=n/200
CASE "I":n=n/n
CASE ELSE:n=0
END SELECT
IF n < preNum THEN num=num-n ELSE num=num+n
preNum=n
next i
romToDec=num
 
END FUNCTION</syntaxhighlight>
{{out}}
<pre>MCMXC = 1990
MMVIII = 2008
MDCLXVI = 1666
 
 
Here are other solutions not from the TASK:
MCMXCIX = 1999
XXV = 25
CMLIV = 954
MMXI = 2011
 
 
Without error checking, this also is 2011, but is wrong
MMIIIX = 2011</pre>
 
==={{header|TI-83 BASIC}}===
Using the Rom‣Dec function "real(21," from [http://www.detachedsolutions.com/omnicalc/ Omnicalc].
<syntaxhighlight lang="ti83b">PROGRAM:ROM2DEC
:Input Str1
:Disp real(21,Str1)</syntaxhighlight>
 
Using TI-83 BASIC
<syntaxhighlight lang="ti83b">PROGRAM:ROM2DEC
:Input "ROMAN:",Str1
:{1000,500,100,50,10,5,1}➞L1
:0➞P
:0➞Y
:For(I,length(Str1),1,-1)
:inString("MDCLXVI",sub(Str1,I,1))➞X
:If X≤0:Then
:Disp "BAD NUMBER"
:Stop
:End
:L1(x)➞N
:If N<P:Then
:Y–N➞Y
:Else
:Y+N➞Y
:End
:N➞P
:End
:Disp Y</syntaxhighlight>
 
==={{header|True BASIC}}===
<syntaxhighlight lang="qbasic">FUNCTION romtodec(roman$)
LET num = 0
LET prenum = 0
FOR i = len(roman$) to 1 step -1
LET x$ = (roman$)[i:i+1-1]
LET n = 0
IF x$ = "M" then LET n = 1000
IF x$ = "D" then LET n = 500
IF x$ = "C" then LET n = 100
IF x$ = "L" then LET n = 50
IF x$ = "X" then LET n = 10
IF x$ = "V" then LET n = 5
IF x$ = "I" then LET n = 1
IF n < prenum then LET num = num-n else LET num = num+n
LET prenum = n
NEXT i
 
LET romtodec = num
END FUNCTION
 
!Testing
PRINT "MCMXCIX = "; romToDec("MCMXCIX") !1999
PRINT "MDCLXVI = "; romToDec("MDCLXVI") !1666
PRINT "XXV = "; romToDec("XXV") !25
PRINT "CMLIV = "; romToDec("CMLIV") !954
PRINT "MMXI = "; romToDec("MMXI") !2011
END</syntaxhighlight>
 
==={{header|XBasic}}===
{{works with|Windows XBasic}}
<syntaxhighlight lang="qbasic">PROGRAM "romandec"
VERSION "0.0000"
 
DECLARE FUNCTION Entry ()
DECLARE FUNCTION romToDec (roman$)
 
FUNCTION Entry ()
PRINT "MCMXCIX = "; romToDec("MCMXCIX")
PRINT "MDCLXVI = "; romToDec("MDCLXVI")
PRINT "XXV = "; romToDec("XXV")
PRINT "CMLIV = "; romToDec("CMLIV")
PRINT "MMXI = "; romToDec("MMXI")
END FUNCTION
 
FUNCTION romToDec (roman$)
num = 0
prenum = 0
FOR i = LEN(roman$) TO 1 STEP -1
x$ = MID$(roman$, i, 1)
SELECT CASE x$
CASE "M" : n = 1000
CASE "D" : n = 500
CASE "C" : n = 100
CASE "L" : n = 50
CASE "X" : n = 10
CASE "V" : n = 5
CASE "I" : n = 1
END SELECT
IF n < prenum THEN num = num-n ELSE num = num+n
prenum = n
NEXT i
 
RETURN num
END FUNCTION
END PROGRAM</syntaxhighlight>
 
==={{header|Yabasic}}===
<syntaxhighlight lang="yabasic">romans$ = "MDCLXVI"
decmls$ = "1000,500,100,50,10,5,1"
 
sub romanDec(s$)
local i, n, prev, res, decmls$(1)
n = token(decmls$, decmls$(), ",")
for i = len(s$) to 1 step -1
n = val(decmls$(instr(romans$, mid$(s$, i, 1))))
if n < prev n = 0 - n
res = res + n
prev = n
next i
return res
end sub
? romanDec("MCMXCIX") // 1999
? romanDec("MDCLXVI") // 1666
? romanDec("XXV") // 25
? romanDec("XIX") // 19
? romanDec("XI") // 11
? romanDec("CMLIV") // 954
? romanDec("MMXI") // 2011
? romanDec("CD") // 400
? romanDec("MCMXC") // 1990
? romanDec("MMVIII") // 2008
? romanDec("MMIX") // 2009
? romanDec("MDCLXVI") // 1666
? romanDec("MMMDCCCLXXXVIII") // 3888</syntaxhighlight>
 
=={{header|Arturo}}==
<syntaxhighlight lang="rebol">syms: #[ M: 1000, D: 500, C: 100, L: 50, X: 10, V: 5, I: 1 ]
 
fromRoman: function [roman][
ret: 0
loop 0..(size roman)-2 'ch [
fst: roman\[ch]
snd: roman\[ch+1]
valueA: syms\[fst]
valueB: syms\[snd]
 
if? valueA < valueB -> ret: ret - valueA
else -> ret: ret + valueA
]
return ret + syms\[last roman]
]
 
loop ["MCMXC" "MMVIII" "MDCLXVI"] 'r -> print [r "->" fromRoman r]</syntaxhighlight>
{{out}}
<pre>MCMXC -> 1990
MMVIII -> 2008
MDCLXVI -> 1666</pre>
 
=={{header|AutoHotkey}}==
{{works with|AutoHotkey_L}}
<langsyntaxhighlight AHKlang="ahk">Roman_Decode(str){
res := 0
Loop Parse, str
Line 938 ⟶ 1,846:
Loop Parse, test, |
res .= A_LoopField "`t= " Roman_Decode(A_LoopField) "`r`n"
clipboard := res</langsyntaxhighlight>
{{out}}
<pre>MCMXC = 1990
Line 945 ⟶ 1,853:
 
=={{header|AWK}}==
<langsyntaxhighlight AWKlang="awk"># syntax: GAWK -f ROMAN_NUMERALS_DECODE.AWK
BEGIN {
leng = split("MCMXC MMVIII MDCLXVI",arr," ")
Line 967 ⟶ 1,875:
}
return( (a>0) ? a : "" )
}</langsyntaxhighlight>
{{out}}
<pre>MCMXC = 1990
MCMXC = 1990
MMVIII = 2008
MDCLXVI = 1666</pre>
</pre>
 
=={{header|Batch File}}==
{{trans|Fortran}}
<langsyntaxhighlight lang="dos">@echo off
setlocal enabledelayedexpansion
 
Line 1,021 ⟶ 1,927:
set lastval=!n!
)
goto :EOF</langsyntaxhighlight>
{{Out}}
<pre>MCMXC = 1990
Line 1,029 ⟶ 1,935:
XCIX = 99</pre>
 
=={{header|BBC BASICBCPL}}==
<syntaxhighlight lang="bcpl">get "libhdr"
<lang bbcbasic> PRINT "MCMXCIX", FNromandecode("MCMXCIX")
 
PRINT "MMXII", FNromandecode("MMXII")
let roman(s) = valof
PRINT "MDCLXVI", FNromandecode("MDCLXVI")
$( let digit(ch) = valof
PRINT "MMMDCCCLXXXVIII", FNromandecode("MMMDCCCLXXXVIII")
$( let ds = table 'm','d','c','l','x','v','i'
END
let vs = table 1000,500,100,50,10,5,1
DEF FNromandecode(roman$) for i=0 to 6
LOCAL i%, j%, p%, n%, r% if ds!i=(ch|32) then resultis vs!i
DIM r%(7) : r%() =resultis 0,1,5,10,50,100,500,1000
$)
FOR i% = LEN(roman$) TO 1 STEP -1
let acc = 0
j% = INSTR("IVXLCDM", MID$(roman$,i%,1))
for i=1 to s%0
IF j%=0 ERROR 100, "Invalid character"
$( let d IF j%>=p% n% += r%(j%) ELSE n% -= r%digit(js%i)
p%if d=0 j%then resultis 0
test i<s%0 & d<digit(s%(i+1))
NEXT
do acc := n%</lang>acc-d
or acc := acc+d
$)
resultis acc
$)
 
let show(s) be writef("%S: %N*N", s, roman(s))
let start() be
$( show("MCMXC")
show("MDCLXVI")
show("MMVII")
show("MMXXI")
$)</syntaxhighlight>
{{out}}
<pre>MCMXC: 1990
MDCLXVI: 1666
MCMXCIX 1999
MMVII: 2007
MMXII 2012
MMXXI: 2021</pre>
MDCLXVI 1666
 
MMMDCCCLXXXVIII 3888
=={{header|BQN}}==
</pre>
 
<syntaxhighlight lang="bqn">⟨ToArabic⇐A⟩ ← {
c ← "IVXLCDM" # Characters
v ← ⥊ (10⋆↕4) ×⌜ 1‿5 # Their values
A ⇐ +´∘(⊢ׯ1⋆<⟜«) v ⊏˜ c ⊐ ⊢
}</syntaxhighlight>
 
{{out|Example use}}
<syntaxhighlight lang="bqn"> ToArabic¨ "MCMXC"‿"MDCLXVI"‿"MMVII"‿"MMXXI"
⟨ 1990 1666 2007 2021 ⟩</syntaxhighlight>
 
=={{header|Bracmat}}==
{{trans|Icon and Unicon}}
<langsyntaxhighlight lang="bracmat"> ( unroman
= nbr,lastVal,val
. 0:?nbr:?lastVal
Line 1,095 ⟶ 2,024:
: ? (?L.?D) (?&test$!L&~)
| done
);</langsyntaxhighlight>
{{out}}
<pre>M 1000
Line 1,110 ⟶ 2,039:
=={{header|C}}==
Note: the code deliberately did not distinguish between "I", "J" or "U", "V", doing what Romans did for fun.
<langsyntaxhighlight Clang="c">#include <stdio.h>
 
int digits[26] = { 0, 0, 100, 500, 0, 0, 0, 0, 1, 1, 0, 50, 1000, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 10, 0, 0 };
Line 1,156 ⟶ 2,085:
 
return 0;
}</langsyntaxhighlight>
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight lang="csharp">using System;
using System.Collections.Generic;
 
Line 1,220 ⟶ 2,149:
}
}
}</langsyntaxhighlight>
{{out}}
<pre>MCMXC: 1990
Line 1,228 ⟶ 2,157:
 
=={{header|C++}}==
<langsyntaxhighlight lang="cpp">
#include <exception>
#include <string>
Line 1,279 ⟶ 2,208:
return 0;
}
</syntaxhighlight>
</lang>
{{out}}
<PRE>MCMXC = 1990
Line 1,286 ⟶ 2,215:
 
=={{header|Ceylon}}==
<langsyntaxhighlight lang="ceylon">shared void run() {
value numerals = map {
Line 1,322 ⟶ 2,251:
assert(toHindu("MCMXC") == 1990);
assert(toHindu("MMVIII") == 2008);
}</langsyntaxhighlight>
 
=={{header|Clojure}}==
<langsyntaxhighlight lang="clojure">
;; Incorporated some improvements from the alternative implementation below
(defn ro2ar [r]
Line 1,340 ⟶ 2,269:
(map numerals)
(reduce (fn [[sum lastv] curr] [(+ sum curr (if (< lastv curr) (* -2 lastv) 0)) curr]) [0,0])
first))</langsyntaxhighlight>
 
{{out}}
<pre>(map ro2ar ["MDCLXVI" "MMMCMXCIX" "XLVIII" "MMVIII"])
(1666 3999 48 2008)</pre>
 
=={{header|CLU}}==
<syntaxhighlight lang="clu">roman = cluster is decode
rep = null
digit_value = proc (c: char) returns (int) signals (invalid)
if c < 'a' then c := char$i2c(char$c2i(c) + 32) end
if c = 'm' then return(1000)
elseif c = 'd' then return(500)
elseif c = 'c' then return(100)
elseif c = 'l' then return(50)
elseif c = 'x' then return(10)
elseif c = 'v' then return(5)
elseif c = 'i' then return(1)
else signal invalid
end
end digit_value
decode = proc (s: string) returns (int) signals (invalid)
acc: int := 0
for i: int in int$from_to(1, string$size(s)) do
d: int := digit_value(s[i])
if i < string$size(s) cand d < digit_value(s[i+1]) then
acc := acc - d
else
acc := acc + d
end
end resignal invalid
return(acc)
end decode
end roman
 
start_up = proc ()
po: stream := stream$primary_output()
tests: array[string] := array[string]$
["MCMXC", "mdclxvi", "MmViI", "mmXXi", "INVALID"]
for test: string in array[string]$elements(tests) do
stream$puts(po, test || ": ")
stream$putl(po, int$unparse(roman$decode(test))) except when invalid:
stream$putl(po, "not a valid Roman numeral!")
end
end
end start_up</syntaxhighlight>
{{out}}
<pre>MCMXC: 1990
mdclxvi: 1666
MmViI: 2007
mmXXi: 2021
INVALID: not a valid Roman numeral!</pre>
 
=={{header|COBOL}}==
<syntaxhighlight lang="cobol">
<lang COBOL>
IDENTIFICATION DIVISION.
PROGRAM-ID. UNROMAN.
Line 1,423 ⟶ 2,402:
.
END PROGRAM UNROMAN.
</syntaxhighlight>
</lang>
{{out}} input was supplied via STDIN
<pre>
Line 1,464 ⟶ 2,443:
 
=={{header|CoffeeScript}}==
<langsyntaxhighlight lang="coffeescript">roman_to_demical = (s) ->
# s is well-formed Roman Numeral >= I
numbers =
Line 1,499 ⟶ 2,478:
dec = roman_to_demical(roman)
console.log "error" if dec != expected
console.log "#{roman} = #{dec}"</langsyntaxhighlight>
 
=={{header|Common Lisp}}==
<langsyntaxhighlight lang="lisp">
(defun mapcn (chars nums string)
(loop as char across string as i = (position char chars) collect (and i (nth i nums))))
Line 1,509 ⟶ 2,488:
(loop with nums = (mapcn "IVXLCDM" '(1 5 10 50 100 500 1000) R)
as (A B) on nums if A sum (if (and B (< A B)) (- A) A)))
</syntaxhighlight>
</lang>
 
Description:
Line 1,524 ⟶ 2,503:
Test code:
 
<langsyntaxhighlight lang="lisp">(dolist (r '("MCMXC" "MDCLXVI" "MMVIII"))
(format t "~a:~10t~d~%" r (parse-roman r)))</langsyntaxhighlight>
{{out}}
<pre>MCMXC: 1990
MDCLXVI: 1666
MMVIII: 2008</pre>
 
=={{header|Cowgol}}==
 
<syntaxhighlight lang="cowgol">include "cowgol.coh";
include "argv.coh";
 
# Decode the Roman numeral in the given string.
# Returns 0 if the string does not contain a valid Roman numeral.
sub romanToDecimal(str: [uint8]): (rslt: uint16) is
# Look up a Roman digit
sub digit(char: uint8): (val: uint16) is
# Definition of Roman numerals
record RomanDigit is
char: uint8;
value: uint16;
end record;
var digits: RomanDigit[] := {
{'I',1}, {'V',5}, {'X',10}, {'L',50},
{'C',100}, {'D',500}, {'M',1000}
};
char := char & ~32; # make uppercase
# Look up given digit
var i: @indexof digits := 0;
while i < @sizeof digits loop
val := digits[i].value;
if digits[i].char == char then
return;
end if;
i := i + 1;
end loop;
val := 0;
end sub;
rslt := 0;
while [str] != 0 loop
var cur := digit([str]); # get value of current digit
if cur == 0 then rslt := 0; return; end if; # stop when invalid
str := @next str;
if digit([str]) > cur then
# a digit followed by a larger digit should be subtracted from
# the total
rslt := rslt - cur;
else
rslt := rslt + cur;
end if;
end loop;
end sub;
 
# Read a Roman numeral from the command line and print its output
ArgvInit();
var argmt := ArgvNext();
if argmt == (0 as [uint8]) then
# No argument
print("No argument\n");
ExitWithError();
end if;
 
print_i16(romanToDecimal(argmt));
print_nl();</syntaxhighlight>
 
{{out}}
<pre>$ ./romandec.386 MCMXC
1990
$ ./romandec.386 MDCLXVI
1666
$ ./romandec.386 MMVII
2007</pre>
 
=={{header|D}}==
<langsyntaxhighlight lang="d">import std.regex, std.algorithm;
 
int toArabic(in string s) /*pure nothrow*/ {
Line 1,550 ⟶ 2,599:
assert("MMVIII".toArabic == 2008);
assert("MDCLXVI".toArabic == 1666);
}</langsyntaxhighlight>
Alternative more functional version:
<langsyntaxhighlight lang="d">import std.regex, std.algorithm;
 
immutable uint[string] w2s;
Line 1,573 ⟶ 2,622:
assert("MMVIII".toArabic == 2008);
assert("MDCLXVI".toArabic == 1666);
}</langsyntaxhighlight>
 
=={{header|Delphi}}/{{header|Pascal}}==
<langsyntaxhighlight lang="delphi">program RomanNumeralsDecode;
 
{$APPTYPE CONSOLE}
Line 1,619 ⟶ 2,668:
Writeln(RomanToInteger('MMVIII')); // 2008
Writeln(RomanToInteger('MDCLXVI')); // 1666
end.</langsyntaxhighlight>
 
=={{header|EasyLang}}==
<syntaxhighlight lang="text">
<lang>rom_digs$[] = [ "M" "D" "C" "L" "X" "V" "I" ]
func rom2dec rom$ .
rom_vals[] = [ 1000 500 100 50 10 5 1 ]
symbols$[] = [ "M" "D" "C" "L" "X" "V" "I" ]
#
values[] = [ 1000 500 100 50 10 5 1 ]
func rom2int rom_numb$ . val .
val = 0
for dig$ in strchars rom$
rom$[] = str_chars rom_numb$
for i range= 1 to len romsymbols$[]
for j range len rom_digs if symbols$[i] = dig$
if rom_digs$[j] v = rom$values[i]
v = rom_vals[j].
.
. val += v
val += if oldv < v
if old_v < v val -= 2 * oldv
val -= 2 * old_v.
. oldv = v
old_v = v.
return val
.
.
callprint rom2introm2dec "MCMXC" v
print vrom2dec "MMVIII"
print rom2dec "MDCLXVI"
call rom2int "MMVIII" v
</syntaxhighlight>
print v
call rom2int "MDCLXVI" v
print v</lang>
 
=={{header|ECL}}==
The best declarative approach:
<syntaxhighlight lang="ecl">
<lang ECL>
MapChar(STRING1 c) := CASE(c,'M'=>1000,'D'=>500,'C'=>100,'L'=>50,'X'=>10,'V'=>5,'I'=>1,0);
 
Line 1,668 ⟶ 2,715:
RomanDecode('MMVIII'); //2008
RomanDecode('MDCLXVI'); //1666
RomanDecode('MDLXVI'); //1566</langsyntaxhighlight>
Here's an alternative that emulates the wat procedural code would approach the problem:
<langsyntaxhighlight ECLlang="ecl">IMPORT STD;
RomanDecode(STRING s) := FUNCTION
SetWeights := [1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1];
Line 1,710 ⟶ 2,757:
RomanDecode('MMVIII'); //2008
RomanDecode('MDCLXVI'); //1666
RomanDecode('MDLXVI'); //1566</langsyntaxhighlight>
 
=={{header|Eiffel}}==
Line 1,716 ⟶ 2,763:
This solution is case insensitive. It performs no input validation other than checking that all Roman digits in the input string are one of <tt>M</tt>, <tt>D</tt>, <tt>C</tt>, <tt>L</tt>, <tt>X</tt>, <tt>V</tt>, and <tt>I</tt>.
 
<langsyntaxhighlight Eiffellang="eiffel">class
APPLICATION
 
Line 1,826 ⟶ 2,873:
end
 
end</langsyntaxhighlight>
 
=={{header|Elena}}==
ELENA 56.0x :
<langsyntaxhighlight lang="elena">import extensions;
import system'collections;
import system'routines;
import system'culture;
static RomanDictionary = Dictionary.new()
Line 1,848 ⟶ 2,896:
{
var minus := 0;
var s := self.upperCasetoUpper();
var total := 0;
for(int i := 0,; i < s.Length,; i += 1)
{
var thisNumeral := RomanDictionary[s[i]] - minus;
Line 1,874 ⟶ 2,922:
console.printLine("MMVIII: ", "MMVIII".toRomanInt());
console.printLine("MDCLXVI:", "MDCLXVI".toRomanInt())
}</langsyntaxhighlight>
{{out}}
<pre>
Line 1,884 ⟶ 2,932:
=={{header|Elixir}}==
{{trans|Erlang}}
<langsyntaxhighlight lang="elixir">defmodule Roman_numeral do
def decode([]), do: 0
def decode([x]), do: to_value(x)
Line 1,905 ⟶ 2,953:
Enum.each(['MCMXC', 'MMVIII', 'MDCLXVI', 'IIIID'], fn clist ->
IO.puts "#{clist}\t: #{Roman_numeral.decode(clist)}"
end)</langsyntaxhighlight>
 
{{out}}
Line 1,915 ⟶ 2,963:
 
=={{header|Emacs Lisp}}==
<syntaxhighlight lang="lisp">(defun ro2ar (RN)
<lang lisp>
"Translate a roman number RN into arabic number.
(defun ro2ar (RN)
"translate a roman number RN into arabic number.
Its argument RN is wether a symbol, wether a list.
Returns the arabic number. (ro2ar 'C) gives 100,
Line 1,931 ⟶ 2,978:
((null (cdr RN)) (ro2ar (car RN))) ;; stop recursion
((< (ro2ar (car RN)) (ro2ar (car (cdr RN)))) (- (ro2ar (cdr RN)) (ro2ar (car RN)))) ;; "IV" -> 5-1=4
(t (+ (ro2ar (car RN)) (ro2ar (cdr RN)))))) ;; "VI" -> 5+1=6</syntaxhighlight>
</lang>
 
{{out}}
 
<pre>
(ro2ar '(M D C L X V I)) -;=> 1666
</pre>
 
=={{header|Erlang}}==
Putting the character X into a list, [X], creates a string with a single character.
 
<syntaxhighlight lang="erlang">
<lang Erlang>
-module( roman_numerals ).
 
Line 1,963 ⟶ 3,008:
{V1, _} -> V1 + decode_from_string([H2|Rest])
end.
</syntaxhighlight>
</lang>
 
{{out}}
Line 1,976 ⟶ 3,021:
 
=={{header|ERRE}}==
<syntaxhighlight lang="erre">
<lang ERRE>
PROGRAM ROMAN2ARAB
 
Line 2,006 ⟶ 3,051:
TOARAB("MMMDCCCLXXXVIII"->ANS%) PRINT(ANS%)
END PROGRAM
</syntaxhighlight>
</lang>
If the answer is -9999, roman number is illegal.
 
=={{header|Euphoria}}==
{{trans|PureBasic}}
<langsyntaxhighlight lang="euphoria">constant symbols = "MDCLXVI", weights = {1000,500,100,50,10,5,1}
function romanDec(sequence roman)
integer n, lastval, arabic
Line 2,035 ⟶ 3,080:
? romanDec("XXV")
? romanDec("CMLIV")
? romanDec("MMXI")</langsyntaxhighlight>
{{out}}
<pre>1999
Line 2,045 ⟶ 3,090:
=={{header|F Sharp|F#}}==
This implementation uses tail recursion. The accumulator (arabic) and the last roman digit (lastval) are recursively passed as each element of the list is consumed.
<langsyntaxhighlight lang="fsharp">let decimal_of_roman roman =
let rec convert arabic lastval = function
| head::tail ->
Line 2,061 ⟶ 3,106:
| _ -> arabic + lastval
convert 0 0 (Seq.toList roman)
;;</langsyntaxhighlight>
 
Here is an alternative implementation that uses Seq(uence).fold. It threads a Tuple of the state (accumulator, last roman digit) through the list of characters.
<langsyntaxhighlight lang="fsharp">let decimal_of_roman roman =
let convert (arabic,lastval) c =
let n = match c with
Line 2,079 ⟶ 3,124:
let (arabic, lastval) = Seq.fold convert (0,0) roman
arabic + lastval
;;</langsyntaxhighlight>
 
Test code:
<langsyntaxhighlight lang="fsharp">let tests = ["MCMXC"; "MMVIII"; "MDCLXVII"; "MMMCLIX"; "MCMLXXVII"; "MMX"]
for test in tests do Printf.printf "%s: %d\n" test (decimal_of_roman test)
;;</langsyntaxhighlight>
 
{{out}}
Line 2,096 ⟶ 3,141:
=={{header|Factor}}==
A roman numeral library ships with Factor.
<langsyntaxhighlight lang="factor">USE: roman
( scratchpad ) "MMMCCCXXXIII" roman> .
3333</langsyntaxhighlight>
 
Implementation for decoding:
 
<langsyntaxhighlight lang="factor">CONSTANT: roman-digits
{ "m" "cm" "d" "cd" "c" "xc" "l" "xl" "x" "ix" "v" "iv" "i" }
 
Line 2,121 ⟶ 3,166:
 
: roman-digit-value ( ch -- n )
roman-digit-index roman-values nth ;</langsyntaxhighlight>
 
=={{header|FALSE}}==
<syntaxhighlight lang="false">[ 32| {get value of Roman digit on stack}
$'m= $[\% 1000\]? ~[
$'d= $[\% 500\]? ~[
$'c= $[\% 100\]? ~[
$'l= $[\% 50\]? ~[
$'x= $[\% 10\]? ~[
$'v= $[\% 5\]? ~[
$'i= $[\% 1\]? ~[
% 0
]?]?]?]?]?]?]?
]r:
 
0 {accumulator}
^r;! {read first Roman digit}
[^r;!$][ {read another, and as long as it is valid...}
\$@@\$@@ {copy previous and current}
\>[\_\]? {if previous smaller than current, negate previous}
@@+\ {add previous to accumulator}
]#
%+. {add final digit to accumulator and output}
10, {and a newline}</syntaxhighlight>
 
{{out}}
 
<pre>$ ./false -q romandec.f <<<MCMXC
1990
$ ./false -q romandec.f <<<MMVIII
2008
$ ./false -q romandec.f <<<MDCLXVI
1666
$ ./false -q romandec.f <<<MMXXI
2021</pre>
 
=={{header|Forth}}==
<langsyntaxhighlight lang="forth">create (arabic)
1000 128 * char M + ,
500 128 * char D + ,
Line 2,149 ⟶ 3,228:
;
 
s" MCMLXXXIV" >arabic .</langsyntaxhighlight>
 
 
<langsyntaxhighlight lang="forth">\ decode roman numerals using Forth methodology
\ create words to describe and solve the problem
\ ANS/ISO Forth
Line 2,192 ⟶ 3,271:
I C@ >VALUE ?NEGATE +
-1 +LOOP ;
</syntaxhighlight>
</LANG>
Alternative Version Forth Console Test
Line 2,212 ⟶ 3,291:
=={{header|Fortran}}==
{{works with|Fortran|90 and later}}
<langsyntaxhighlight lang="fortran">program Roman_decode
implicit none
Line 2,252 ⟶ 3,331:
end do
end function decode
end program Roman_decode</langsyntaxhighlight>
{{out}}
<pre> 1990 2008 1666</pre>
 
=={{header|FreeBASIC}}==
<lang freebasic>' FB 1.05.0 Win64
 
Function romanDecode(roman As Const String) As Integer
If roman = "" Then Return 0 '' zero denotes invalid roman number
Dim roman1(0 To 2) As String = {"MMM", "MM", "M"}
Dim roman2(0 To 8) As String = {"CM", "DCCC", "DCC", "DC", "D", "CD", "CCC", "CC", "C"}
Dim roman3(0 To 8) As String = {"XC", "LXXX", "LXX", "LX", "L", "XL", "XXX", "XX", "X"}
Dim roman4(0 To 8) As String = {"IX", "VIII", "VII", "VI", "V", "IV", "III", "II", "I"}
Dim As Integer i, value = 0, length = 0
Dim r As String = UCase(roman)
 
For i = 0 To 2
If Left(r, Len(roman1(i))) = roman1(i) Then
value += 1000 * (3 - i)
length = Len(roman1(i))
r = Mid(r, length + 1)
length = 0
Exit For
End If
Next
 
For i = 0 To 8
If Left(r, Len(roman2(i))) = roman2(i) Then
value += 100 * (9 - i)
length = Len(roman2(i))
r = Mid(r, length + 1)
length = 0
Exit For
End If
Next
 
For i = 0 To 8
If Left(r, Len(roman3(i))) = roman3(i) Then
value += 10 * (9 - i)
length = Len(roman3(i))
r = Mid(r, length + 1)
length = 0
Exit For
End If
Next
 
For i = 0 To 8
If Left(r, Len(roman4(i))) = roman4(i) Then
value += 9 - i
length = Len(roman4(i))
Exit For
End If
Next
' Can't be a valid roman number if there are any characters left
If Len(r) > length Then Return 0
Return value
End Function
 
Dim a(2) As String = {"MCMXC", "MMVIII" , "MDCLXVI"}
For i As Integer = 0 To 2
Print a(i); Tab(8); " =>"; romanDecode(a(i))
Next
 
Print
Print "Press any key to quit"
Sleep</lang>
 
{{out}}
<pre>
MCMXC => 1990
MMVIII => 2008
MDCLXVI => 1666
</pre>
 
=={{header|FutureBasic}}==
<lang futurebasic>
local fn RomantoDecimal( roman as Str15 ) as short
dim as short i, n, preNum, num
 
preNum = 0 : num = 0
 
for i = roman[0] to 1 step -1
n = 0
if roman[i] = _"M" then n = 1000
if roman[i] = _"D" then n = 500
if roman[i] = _"C" then n = 100
if roman[i] = _"L" then n = 50
if roman[i] = _"X" then n = 10
if roman[i] = _"V" then n = 5
if roman[i] = _"I" then n = 1
if n < preNum then num = num - n else num = num + n
preNum = n
next
end fn = num
 
print " MCMXC ="; fn RomantoDecimal( "MCMXC" )
print " MMVIII ="; fn RomantoDecimal( "MMVIII" )
print " MMXVI ="; fn RomantoDecimal( "MMXVI" )
print "MDCLXVI ="; fn RomantoDecimal( "MDCLXVI" )
print " MCMXIV ="; fn RomantoDecimal( "MCMXIV" )
print " DXIII ="; fn RomantoDecimal( "DXIII" )
print " M ="; fn RomantoDecimal( "M" )
print " DXIII ="; fn RomantoDecimal( "DXIII" )
print " XXXIII ="; fn RomantoDecimal( "XXXIII" )
</lang>
 
Output:
<pre>
MCMXC = 1990
MMVIII = 2008
MMXVI = 2016
MDCLXVI = 1666
MCMXIV = 1914
DXIII = 513
M = 1000
DXIII = 513
XXXIII = 33
</pre>
 
=={{header|Gambas}}==
<lang gambas>'This code will create a GUI Form and Objects and carry out the Roman Numeral convertion as you type
'The input is case insensitive
'A basic check for invalid charaters is made
 
hTextBox As TextBox 'To allow the creation of a TextBox
hValueBox As ValueBox 'To allow the creation of a ValueBox
 
Public Sub Form_Open() 'Form opens..
 
SetUpForm 'Go to the SetUpForm Routine
hTextBox.text = "MCMXC" 'Put a Roman numeral in the TextBox
 
End
 
Public Sub TextBoxInput_Change() 'Each time the TextBox text changes..
Dim cRomanN As Collection = ["M": 1000, "D": 500, "C": 100, "L": 50, "X": 10, "V": 5, "I": 1] 'Collection of nemerals e.g 'M' = 1000
Dim cMinus As Collection = ["IV": -2, "IX": -2, "XL": -20, "XC": - 20, "CD": -200, "CM": -200] 'Collection of the 'one less than' numbers e.g. 'IV' = 4
Dim sClean, sTemp As String 'Various string variables
Dim siCount As Short 'Counter
Dim iTotal As Integer 'Stores the total of the calculation
 
hTextBox.Text = UCase(hTextBox.Text) 'Make any text in the TextBox upper case
 
For siCount = 1 To Len(hTextBox.Text) 'Loop through each character in the TextBox
If InStr("MDCLXVI", Mid(hTextBox.Text, siCount, 1)) Then 'If a Roman numeral exists then..
sClean &= Mid(hTextBox.Text, siCount, 1) 'Put it in 'sClean' (Stops input of non Roman numerals)
End If
Next
 
hTextBox.Text = sClean 'Put the now clean text in the TextBox
 
For siCount = 1 To Len(hTextBox.Text) 'Loop through each character in the TextBox
iTotal += cRomanN[Mid(hTextBox.Text, siCount, 1)] 'Total up all the characters, note 'IX' will = 11 not 9
Next
 
For Each sTemp In cMinus 'Loop through each item in the cMinus Collection
If InStr(sClean, cMinus.Key) > 0 Then iTotal += Val(sTemp) 'If a 'Minus' value is in the string e.g. 'IX' which has been calculated at 11 subtract 2 = 9
Next
 
hValueBox.text = iTotal 'Display the total
 
End
 
Public Sub SetUpForm() 'Create the Objects for the Form
Dim hLabel1, hLabel2 As Label 'For 2 Labels
 
Me.height = 150 'Form Height
Me.Width = 300 'Form Width
Me.Padding = 20 'Form padding (border)
Me.Text = "Roman Numeral converter" 'Text in Form header
Me.Arrangement = Arrange.Vertical 'Form arrangement
 
hLabel1 = New Label(Me) 'Create a Label
hLabel1.Height = 21 'Label Height
hLabel1.expand = True 'Expand the Label
hLabel1.Text = "Enter a Roman numeral" 'Put text in the Label
 
hTextBox = New TextBox(Me) As "TextBoxInput" 'Set up a TextBox with an Event Label
hTextBox.Height = 21 'TextBox height
hTextBox.expand = True 'Expand the TextBox
 
hLabel2 = New Label(Me) 'Create a Label
hLabel2.Height = 21 'Label Height
hLabel2.expand = True 'Expand the Label
hLabel2.Text = "The decimal equivelent is: -" 'Put text in the Label
 
hValueBox = New ValueBox(Me) 'Create a ValueBox
hValueBox.Height = 21 'ValuBox Height
hValueBox.expand = True 'Expand the ValueBox
hValueBox.ReadOnly = True 'Set ValueBox to Read Only
 
End</lang>
'''[http://www.cogier.com/gambas/Roman%20Numeral%20converter.png Click here for image of running code]'''
 
=={{header|Go}}==
For fluff, the unicode overbar is recognized as a factor of 1000, [http://en.wikipedia.org/wiki/Roman_numerals#Large_numbers as described in WP].
<langsyntaxhighlight lang="go">package main
 
import (
Line 2,532 ⟶ 3,420:
}
}
}</langsyntaxhighlight>
{{out}}
<pre>
Line 2,541 ⟶ 3,429:
 
Simpler:
<langsyntaxhighlight lang="go">package main
 
import (
Line 2,577 ⟶ 3,465:
fmt.Printf("%-10s == %d\n", roman_digit, from_roman(roman_digit))
}
}</langsyntaxhighlight>
 
=={{header|Golo}}==
<langsyntaxhighlight lang="golo">#!/usr/bin/env golosh
----
This module converts a Roman numeral into a decimal number.
Line 2,626 ⟶ 3,514:
println("MDCLXVI = " + "MDCLXVI": decode())
}
</syntaxhighlight>
</lang>
 
=={{header|Groovy}}==
Solution:
<langsyntaxhighlight lang="groovy">enum RomanDigits {
I(1), V(5), X(10), L(50), C(100), D(500), M(1000);
Line 2,649 ⟶ 3,537:
}
}
}</langsyntaxhighlight>
Test:
<langsyntaxhighlight lang="groovy">println """
Digit Values = ${RomanDigits.values()}
M => ${RomanDigits.parse('M')}
Line 2,662 ⟶ 3,550:
MCDXLIV => ${RomanDigits.parse('MCDXLIV')}
MDCLXVI => ${RomanDigits.parse('MDCLXVI')}
"""</langsyntaxhighlight>
{{out}}
<pre>Digit Values = [I=1, V=5, X=10, L=50, C=100, D=500, M=1000]
Line 2,681 ⟶ 3,569:
Compiles with GHC.
 
<syntaxhighlight lang="haskell">
<lang Haskell>
module Main where
 
Line 2,727 ⟶ 3,615:
arabic = decode roman
remark = " (" ++ (if arabic == expected then "PASS" else ("FAIL, expected " ++ (show expected))) ++ ")"
</syntaxhighlight>
</lang>
 
{{Out}}
Line 2,738 ⟶ 3,626:
====Same logic as above but in a functional idiom====
 
<syntaxhighlight lang="haskell">
<lang Haskell>
module Main where
 
Line 2,779 ⟶ 3,667:
arabic = decode roman
remark = " (" ++ (if arabic == expected then "PASS" else ("FAIL, expected " ++ (show expected))) ++ ")"
</syntaxhighlight>
</lang>
 
====List comprehension====
<langsyntaxhighlight Haskelllang="haskell">import Data.List (isPrefixOf)
 
mapping = [("M",1000),("CM",900),("D",500),("CD",400),("C",100),("XC",90),
Line 2,790 ⟶ 3,678:
toArabic "" = 0
toArabic str = num + toArabic xs
where (num, xs):_ = [ (num, drop (length n) str) | (n,num) <- mapping, isPrefixOf n str ]</langsyntaxhighlight>
Usage:
<pre>
Line 2,802 ⟶ 3,690:
====mapAccum====
Or, expressing '''romanValue''' in terms of '''mapAccumL''' (avoiding recursive descent, and visiting each k v pair just once)
<syntaxhighlight lang Haskell="haskell">import Data.ListBifunctor (mapAccumL, isPrefixOfbimap)
import ControlData.ArrowList ((***)isPrefixOf, mapAccumL)
 
romanValue :: String -> Int
romanValue =
let tr s (k, v) =
until
until (not . isPrefixOf k . fst) (drop (length k) *** (v +)) (s, 0)
(not . isPrefixOf k . fst)
in sum .
(bimap ((drop . length) k) (v +))
snd .
flip (s, 0)
in sum
(mapAccumL tr)
[ ("M",. 1000)snd
, ("CM",. 900)flip
, ("D",mapAccumL 500tr)
, [ ("CDM", 4001000),
, ("CCM", 100900),
, ("XCD", 90500),
, ("LCD", 50400),
, ("XLC", 40100),
, ("XXC", 1090),
, ("IXL", 950),
, ("VXL", 540),
, ("IVX", 410),
, ("IIX", 19),
] ("V", 5),
("IV", 4),
("I", 1)
]
 
main :: IO ()
main =
mapM_
mapM_ (print . romanValue) ["MDCLXVI", "MCMXC", "MMVIII", "MMXVI", "MMXVII"]</lang>
(print . romanValue)
[ "MDCLXVI",
"MCMXC",
"MMVIII",
"MMXVI",
"MMXVII"
]</syntaxhighlight>
 
Or, in a '''mapAccumR''' version:
<langsyntaxhighlight Haskelllang="haskell">import Data.List (mapAccumR)
import qualified Data.Map.Strict as M
import Data.Maybe (maybe)
 
fromRoman :: String -> Maybe Int
fromRoman cs =
let go l r
| l > r = (- r, l)
| otherwise = (r, l)
in traverse (`M.lookup` mapRoman) cs >>=
>>= ( Just . sum . ((:) <$> fst <*> snd) . mapAccumR go 0)
. mapAccumR go 0
)
mapRoman :: Map Char Int
 
mapRoman = M.fromList $ zip "MDCLXVI " [1000, 500, 100, 50, 10, 5, 1, 0]
mapRoman :: M.Map Char Int
mapRoman =
-- TEST ---------------------------------------------------
M.fromList $
zip
"MDCLXVI "
[ 1000,
500,
100,
50,
10,
5,
1,
0
]
 
--------------------------- TEST -------------------------
main :: IO ()
main =
putStrLn $
fTable
"Decoding Roman numbers:\n"
show
(maybe "Unrecognised character" show)
fromRoman
[ "MDCLXVI",
["MDCLXVI", "MCMXC", "MMVIII", "MMXVI", "MMXVIII", "MMXBIII"]
"MCMXC",
"MMVIII",
-- FORMATTING ---------------------------------------------
"MMXVI",
fTable :: String -> (a -> String) -> (b -> String) -> (a -> b) -> [a] -> String
"MMXVIII",
"MMXBIII"
]
 
------------------------ FORMATTING ----------------------
fTable ::
String ->
(a -> String) ->
(b -> String) ->
(a -> b) ->
[a] ->
String
fTable s xShow fxShow f xs =
unlines $
let w = maximum (length . xShow <$> xs)
s :
rjust n c = drop <$> length <*> (replicate n c ++)
in unlines $fmap
s : fmap( (((++<>) . rjust w ' ' . xShow) <*> ((" -> " ++) . fxShow . f)) xs</lang>
<*> ((" -> " <>) . fxShow . f)
)
xs
where
rjust n c = drop . length <*> (replicate n c <>)
w = maximum (length . xShow <$> xs)</syntaxhighlight>
{{Out}}
<pre>Decoding Roman numbers:
Line 2,879 ⟶ 3,809:
An alternative solution using a fold. (This turns out to be the fastest of the four approaches here) {{Trans|F#}}
 
<langsyntaxhighlight Haskelllang="haskell">import qualified Data.Map.Strict as M
 
fromRoman :: String -> Int
Line 2,909 ⟶ 3,839:
 
main :: IO ()
main = print $ fromRoman <$> ["MDCLXVI", "MCMXC", "MMVIII", "MMXVI", "MMXVII"]</langsyntaxhighlight>
 
 
Where the left fold above could also be rewritten [http://wiki.haskell.org/Foldr_Foldl_Foldl%27 | as a right fold].
<langsyntaxhighlight Haskelllang="haskell">import qualified Data.Map.Strict as M
import Data.Maybe (maybe)
 
import Data.Bool (bool)
------------------ ROMAN NUMERALS DECODED ----------------
 
mapRoman :: M.Map Char Int
mapRoman =
mapRoman = M.fromList $ zip "IVXLCDM" $ scanl (*) 1 (cycle [5, 2])
M.fromList $
zip "IVXLCDM" $
scanl (*) 1 (cycle [5, 2])
 
fromRoman :: String -> Maybe Int
fromRoman cs =
let op l r
traverse (`M.lookup` mapRoman) cs >>=
(Just . snd . foldr (\l (r,| n) -> (l, bool (-) (+) (l >= r) n l))= (0, 0)+)
| otherwise = (-)
in snd
. foldr
-- TEST ---------------------------------------------------
(\l (r, n) -> (l, op l r n l))
(0, 0)
<$> traverse (`M.lookup` mapRoman) cs
 
--------------------------- TEST -------------------------
main :: IO ()
main =
putStrLn $
fTable
"Roman numeral decoding as a right fold:\n"
show
(maybe "(Unrecognised character seen)" show)
fromRoman
[ "MDCLXVI",
["MDCLXVI", "MCMXC", "MMVIII", "MMXVI", "MMXVII", "QQXVII"]
"MCMXC",
"MMVIII",
-- FORMATTING ---------------------------------------------
"MMXVI",
"MMXVII",
fTable :: String -> (a -> String) -> (b -> String) -> (a -> b) -> [a] -> String
"QQXVII"
]
 
------------------------ FORMATTING ----------------------
 
fTable ::
String ->
(a -> String) ->
(b -> String) ->
(a -> b) ->
[a] ->
String
fTable s xShow fxShow f xs =
unlines $
let w = maximum (length . xShow <$> xs)
s :
rjust n c = drop <$> length <*> (replicate n c ++)
in unlines $fmap
s : fmap( (((++<>) . rjust w ' ' . xShow) <*> ((" -> " ++) . fxShow . f)) xs</lang>
<*> ((" -> " <>) . fxShow . f)
)
xs
where
rjust n c = drop . length <*> (replicate n c <>)
w = maximum (length . xShow <$> xs)</syntaxhighlight>
{{Out}}
<pre>Roman numeral decoding as a right fold:
Line 2,962 ⟶ 3,918:
(Probably more trouble than it's worth in practice, but at least an illustration of some Data.Maybe and Data.Map functions)
 
<langsyntaxhighlight Haskelllang="haskell">import qualified Data.Map.Strict as M (Map, fromList, lookup)
import Data.Maybe (isNothing, isJust, fromJust, catMaybes)
import Data.List (mapAccumL)
Line 3,000 ⟶ 3,956:
main :: IO ()
main = print $ fromRoman <$> ["MDCLXVI", "MCMXC", "MMVIII", "MMXVI", "MMXVII"]</langsyntaxhighlight>
{{Out}}
<pre>[1666,1990,2008,2016,2017]</pre>
 
=={{header|Hoon}}==
 
Library file (e.g. <code>/lib/rhonda.hoon</code>):
 
<syntaxhighlight lang="hoon">|%
++ parse
|= t=tape ^- @ud
=. t (cass t)
=| result=@ud
|-
?~ t result
?~ t.t (add result (from-numeral i.t))
=+ [a=(from-numeral i.t) b=(from-numeral i.t.t)]
?: (gte a b) $(result (add result a), t t.t)
$(result (sub (add result b) a), t t.t.t)
++ yield
|= n=@ud ^- tape
=| result=tape
=/ values to-numeral
|-
?~ values result
?: (gte n -.i.values)
$(result (weld result +.i.values), n (sub n -.i.values))
$(values t.values)
++ from-numeral
|= c=@t ^- @ud
?: =(c 'i') 1
?: =(c 'v') 5
?: =(c 'x') 10
?: =(c 'l') 50
?: =(c 'c') 100
?: =(c 'd') 500
?: =(c 'm') 1.000
!!
++ to-numeral
^- (list [@ud tape])
:*
[1.000 "m"]
[900 "cm"]
[500 "d"]
[400 "cd"]
[100 "c"]
[90 "xc"]
[50 "l"]
[40 "xl"]
[10 "x"]
[9 "ix"]
[5 "v"]
[4 "iv"]
[1 "i"]
~
==
--</syntaxhighlight>
 
Script file ("generator") (e.g. <code>/gen/roman.hoon</code>):
 
<syntaxhighlight lang="hoon">/+ *roman
:- %say
|= [* [x=$%([%from-roman tape] [%to-roman @ud]) ~] ~]
:- %noun
^- tape
?- -.x
%from-roman "{<(parse +.x)>}"
%to-roman (yield +.x)
==</syntaxhighlight>
 
=={{header|Icon}} and {{header|Unicon}}==
<langsyntaxhighlight Iconlang="icon">link numbers
 
procedure main()
every R := "MCMXC"|"MDCLXVI"|"MMVIII" do
write(R, " = ",unroman(R))
end</langsyntaxhighlight>
{{libheader|Icon Programming Library}}
[http://www.cs.arizona.edu/icon/library/src/procs/numbers.icn numbers.icn provides unroman]
 
The code for this procedure is copied below:
<langsyntaxhighlight Iconlang="icon">procedure unroman(s) #: convert Roman numeral to integer
local nbr,lastVal,val
 
Line 3,034 ⟶ 4,056:
}
return nbr
end</langsyntaxhighlight>
{{out}}
<pre>MCMXC = 1990
MDCLXVI = 1666
MMVIII = 2008</pre>
 
=={{header|Insitux}}==
 
{{Trans|Clojure}}
 
<syntaxhighlight lang="insitux">
(var numerals {"M" 1000 "D" 500 "C" 100 "L" 50 "X" 10 "V" 5 "I" 1})
 
; Approach A
(function ro->ar r
(-> (reverse (upper-case r))
(map numerals)
(split-with val)
(map (.. +0))
(reduce @(((< % %1) + -)))))
 
; Approach B
(function ro->ar r
(-> (upper-case r)
(map numerals)
@(reduce (fn [sum lastv] curr [(+ sum curr ((< lastv curr) (* -2 lastv) 0)) curr]) [0 0])
0))
 
(map ro->ar ["MDCLXVI" "MMMCMXCIX" "XLVIII" "MMVIII"])
</syntaxhighlight>
 
{{out}}
 
<pre>
[1666 3999 48 2008]
</pre>
 
=={{header|J}}==
<langsyntaxhighlight lang="j">rom2d=: [: (+/ .* _1^ 0,~ 2</\ ]) 1 5 10 50 100 500 1000 {~ 'IVXLCDM'&i.</langsyntaxhighlight>
Example use:
<langsyntaxhighlight lang="j"> rom2d 'MCMXC'
1990
rom2d 'MDCLXVI'
1666
rom2d 'MMVIII'
2008</langsyntaxhighlight>
 
=={{header|Java}}==
{{works with|Java|1.5+}}
<langsyntaxhighlight lang="java5">public class Roman {
private static int decodeSingle(char letter) {
switch(letter) {
Line 3,088 ⟶ 4,141:
System.out.println(decode("MDCLXVI")); //1666
}
}</langsyntaxhighlight>
{{out}}
<pre>1990
Line 3,094 ⟶ 4,147:
1666</pre>
{{works with|Java|1.8+}}
<langsyntaxhighlight lang="java5">import java.util.Set;
import java.util.EnumSet;
import java.util.Collections;
Line 3,152 ⟶ 4,205:
LongStream.of(1999, 25, 944).forEach(RomanNumerals::test);
}
}</langsyntaxhighlight>
{{out}}
<pre>1999 = MCMXCIX
Line 3,166 ⟶ 4,219:
{{works with|Rhino}}
{{works with|SpiderMonkey}}
<langsyntaxhighlight lang="javascript">var Roman = {
Values: [['CM', 900], ['CD', 400], ['XC', 90], ['XL', 40], ['IV', 4],
['IX', 9], ['V', 5], ['X', 10], ['L', 50],
Line 3,191 ⟶ 4,244:
var test_datum = test_data[i]
print(test_datum + ": " + Roman.parse(test_datum))
}</langsyntaxhighlight>
{{out}}
<pre>MCMXC: 1990
Line 3,200 ⟶ 4,253:
{{Trans|Haskell}}
(isPrefixOf example)
<langsyntaxhighlight JavaScriptlang="javascript">(function (lstTest) {
var mapping = [["M", 1000], ["CM", 900], ["D", 500], ["CD", 400], ["C", 100], [
Line 3,247 ⟶ 4,300:
return lstTest.map(romanValue);
})(['MCMXC', 'MDCLXVI', 'MMVIII']);</langsyntaxhighlight>
{{Out}}
<syntaxhighlight lang JavaScript="javascript">[1990, 1666, 2008]</langsyntaxhighlight>
 
or, more natively:
<langsyntaxhighlight JavaScriptlang="javascript">(function (lstTest) {
function romanValue(s) {
Line 3,282 ⟶ 4,335:
return lstTest.map(romanValue);
})(["MCMXC", "MDCLXVI", "MMVIII", "MMMM"]);</langsyntaxhighlight>
{{Out}}
<syntaxhighlight lang JavaScript="javascript">[1990, 1666, 2008]</langsyntaxhighlight>
 
===ES6===
====Recursion====
<langsyntaxhighlight JavaScriptlang="javascript">(() => {
// romanValue :: String -> Int
const romanValue = s =>
Line 3,322 ⟶ 4,375:
// TEST -------------------------------------------------------------------
return ["MCMXC", "MDCLXVI", "MMVIII", "MMMM"].map(romanValue);
})();</langsyntaxhighlight>
{{Out}}
<syntaxhighlight lang JavaScript="javascript">[1990,1666,2008,4000]</langsyntaxhighlight>
 
 
Line 3,330 ⟶ 4,383:
{{Trans|Haskell}}
(fold and foldr examples)
<langsyntaxhighlight JavaScriptlang="javascript">(() => {
 
// -------------- ROMAN NUMERALS DECODED ---------------
Line 3,385 ⟶ 4,438:
// MAIN ---
return main();
})();</langsyntaxhighlight>
{{Out}}
<pre>1666
Line 3,392 ⟶ 4,445:
2016
2017</pre>
 
====Declarative====
<syntaxhighlight lang="javascript">
(() => {
function toNumeric(value) {
return value
.replace(/IV/, 'I'.repeat(4))
.replace(/V/g, 'I'.repeat(5))
.replace(/IX/, 'I'.repeat(9))
.replace(/XC/, 'I'.repeat(90))
.replace(/XL/, 'I'.repeat(40))
.replace(/X/g, 'I'.repeat(10))
.replace(/L/, 'I'.repeat(50))
.replace(/CD/, 'I'.repeat(400))
.replace(/CM/, 'I'.repeat(900))
.replace(/C/g, 'I'.repeat(100))
.replace(/D/g, 'I'.repeat(500))
.replace(/M/g, 'I'.repeat(1000))
.length;
}
 
const numerics = ["MMXVI", "MCMXC", "MMVIII", "MM", "MDCLXVI"]
.map(toNumeric);
 
console.log(numerics);
})();
</syntaxhighlight>
 
{{Out}}
<pre>
[2016, 1990, 2008, 2000, 1666]
</pre>
 
=={{header|jq}}==
{{works with|jq|1.4}}
This version requires the Roman numerals to be presented in upper case.
<langsyntaxhighlight lang="jq">def fromRoman:
def addRoman(n):
if length == 0 then n
Line 3,415 ⟶ 4,500:
error("invalid Roman numeral: " + tostring)
end;
addRoman(0);</langsyntaxhighlight>
'''Example:'''
<langsyntaxhighlight lang="jq">[ "MCMXC", "MMVIII", "MDCLXVI" ] | map("\(.) => \(fromRoman)") | .[]</langsyntaxhighlight>
{{out}}
<langsyntaxhighlight lang="sh">$ jq -n -f -r fromRoman.jq
MCMXC => 1990
MMVIII => 2008
MDCLXVI => 1666</langsyntaxhighlight>
 
=={{header|Jsish}}==
Line 3,434 ⟶ 4,519:
{{works with|Julia|0.6}}
'''The Function''':
<langsyntaxhighlight lang="julia">function parseroman(rnum::AbstractString)
romandigits = Dict('I' => 1, 'V' => 5, 'X' => 10, 'L' => 50,
'C' => 100, 'D' => 500, 'M' => 1000)
Line 3,452 ⟶ 4,537:
end
return accm
end</langsyntaxhighlight>
 
This function is rather permissive. There are no limitations on the numbers of Roman numerals nor on their order. Because of this and because any out of order numerals subtract from the total represented, it is possible to represent zero and negative integers. Also mixed case representations are allowed. The function does throw an error if the string contains any invalid characters.
 
'''Test the code''':
<langsyntaxhighlight lang="julia">using Printf
 
test = ["I", "III", "IX", "IVI", "IIM",
Line 3,464 ⟶ 4,549:
for rnum in test
@printf("%15s → %s\n", rnum, try parseroman(rnum) catch "not valid" end)
end</langsyntaxhighlight>
 
{{out}}
Line 3,485 ⟶ 4,570:
=={{header|K}}==
{{trans|J}}
<langsyntaxhighlight lang="k"> romd: {v:1 5 10 50 100 500 1000@"IVXLCDM"?/:x; +/v*_-1^(>':v),0}</langsyntaxhighlight>
'''Example:'''
<langsyntaxhighlight lang="k"> romd'("MCMXC";"MMVIII";"MDCLXVI")
1990 2008 1666</langsyntaxhighlight>
 
=={{header|Kotlin}}==
As specified in the task description, there is no attempt to validate the form of the Roman number in the following program - invalid characters and ordering are simply ignored:
<langsyntaxhighlight lang="scala">// version 1.0.6
 
fun romanDecode(roman: String): Int {
Line 3,516 ⟶ 4,601:
val romans = arrayOf("I", "III", "IV", "VIII", "XLIX", "CCII", "CDXXXIII", "MCMXC", "MMVIII", "MDCLXVI")
for (roman in romans) println("${roman.padEnd(10)} = ${romanDecode(roman)}")
}</langsyntaxhighlight>
 
{{out}}
Line 3,533 ⟶ 4,618:
 
=={{header|Lasso}}==
<langsyntaxhighlight Lassolang="lasso">define br => '\r'
//decode roman
define decodeRoman(roman::string)::integer => {
Line 3,555 ⟶ 4,640:
'MMVIII as integer is '+decodeRoman('MMVIII')
br
'MDCLXVI as integer is '+decodeRoman('MDCLXVI')</langsyntaxhighlight>
 
=={{header|Liberty BASIC}}==
As Fortran & PureBasic.
<lang lb> print "MCMXCIX = "; romanDec( "MCMXCIX") '1999
print "MDCLXVI = "; romanDec( "MDCLXVI") '1666
print "XXV = "; romanDec( "XXV") '25
print "CMLIV = "; romanDec( "CMLIV") '954
print "MMXI = "; romanDec( "MMXI") '2011
 
end
 
function romanDec( roman$)
arabic =0
lastval =0
 
for i = len( roman$) to 1 step -1
select case upper$( mid$( roman$, i, 1))
case "M"
n = 1000
case "D"
n = 500
case "C"
n = 100
case "L"
n = 50
case "X"
n = 10
case "V"
n = 5
case "I"
n = 1
case else
n = 0
end select
 
if n <lastval then
arabic =arabic -n
else
arabic =arabic +n
end if
 
lastval =n
next
 
romanDec =arabic
end function</lang>
<pre>
MCMXCIX = 1999
MDCLXVI = 1666
XXV = 25
CMLIV = 954
MMXI = 2011
</pre>
 
=={{header|LiveScript}}==
 
<langsyntaxhighlight lang="livescript">require! 'prelude-ls': {fold, sum}
 
# String → Number
Line 3,624 ⟶ 4,656:
fold(_convert, [0, 0]) >> sum
 
{[rom, decimal_of_roman rom] for rom in <[ MCMXC MMVII MDCLXVII MMMCLIX MCMLXXVII MMX ]>}</langsyntaxhighlight>
 
Output:
Line 3,630 ⟶ 4,662:
 
=={{header|Logo}}==
<langsyntaxhighlight lang="logo">; Roman numeral decoder
 
; First, some useful substring utilities
Line 3,664 ⟶ 4,696:
 
foreach [MCMXC MDCLXVI MMVIII] [print (sentence (word ? "|: |) from_roman ?)]
bye</langsyntaxhighlight>
{{out}}
<pre>MCMXC: 1990
Line 3,672 ⟶ 4,704:
 
=={{header|Lua}}==
<langsyntaxhighlight lang="lua">function ToNumeral( roman )
local Num = { ["M"] = 1000, ["D"] = 500, ["C"] = 100, ["L"] = 50, ["X"] = 10, ["V"] = 5, ["I"] = 1 }
local numeral = 0
Line 3,696 ⟶ 4,728:
print( ToNumeral( "MCMXC" ) )
print( ToNumeral( "MMVIII" ) )
print( ToNumeral( "MDCLXVI" ) )</langsyntaxhighlight>
<pre>1990
2008
Line 3,704 ⟶ 4,736:
Maximum Roman number is MMMCMXCIX (3999)
 
<syntaxhighlight lang="m2000 interpreter">
<lang M2000 Interpreter>
Module RomanNumbers {
flush ' empty current stack
Line 3,781 ⟶ 4,813:
RomanNumbers
</syntaxhighlight>
</lang>
 
{{out}}
Line 3,812 ⟶ 4,844:
 
=={{header|Maple}}==
<langsyntaxhighlight lang="maple">f := n -> convert(n, arabic):
seq(printf("%a\n", f(i)), i in [MCMXC, MMVIII, MDCLXVI]);</langsyntaxhighlight>
{{out}}
<pre>
Line 3,821 ⟶ 4,853:
</pre>
 
=={{header|Mathematica}}/{{header|Wolfram Language}}==
<langsyntaxhighlight Mathematicalang="mathematica">FromRomanNumeral["MMCDV"]</langsyntaxhighlight>
{{out}}
returns 2405
<pre>2405</pre>
 
=={{header|MATLAB}}==
<langsyntaxhighlight Matlablang="matlab">function x = rom2dec(s)
% ROM2DEC converts Roman numbers to decimal
 
Line 3,836 ⟶ 4,869:
x = sum(values .* [sign(diff(-values)+eps),1]);
 
end</langsyntaxhighlight>
Here is a test:
<langsyntaxhighlight Matlablang="matlab">romanNumbers = {'MMMCMXCIX', 'XLVIII', 'MMVIII'};
for n = 1 : numel(romanNumbers)
fprintf('%10s = %4d\n',romanNumbers{n}, rom2dec(romanNumbers{n}));
end</langsyntaxhighlight>
{{out}}
<pre>
Line 3,850 ⟶ 4,883:
 
=={{header|Mercury}}==
<langsyntaxhighlight Mercurylang="mercury">:- module test_roman.
 
:- interface.
Line 3,898 ⟶ 4,931:
Args, !IO).
 
:- end_module test_roman.</langsyntaxhighlight>
 
=={{header|Miranda}}==
<syntaxhighlight lang="miranda">main :: [sys_message]
main = [ Stdout (s ++ ": " ++ show (fromroman s) ++ "\n")
| s <- ["MCMXC", "MDCLXVI", "MMVII", "MMXXIII"]
]
 
fromroman :: [char]->num
fromroman = f
where f [] = 0
f [x] = r x
f (x:y:xs) = f (y:xs) - r x, if r x < r y
= f (y:xs) + r x, otherwise
r 'M' = 1000
r 'D' = 500
r 'C' = 100
r 'L' = 50
r 'X' = 10
r 'V' = 5
r 'I' = 1</syntaxhighlight>
{{out}}
<pre>MCMXC: 1990
MDCLXVI: 1666
MMVII: 2007
MMXXIII: 2023</pre>
 
=={{header|Modula-2}}==
<syntaxhighlight lang="modula2">MODULE RomanNumerals;
FROM InOut IMPORT WriteString, WriteCard, WriteLn;
FROM Strings IMPORT Length;
 
(* Convert given Roman numeral to binary *)
PROCEDURE DecodeRoman(s: ARRAY OF CHAR): CARDINAL;
VAR i, d, len, acc: CARDINAL;
PROCEDURE Digit(d: CHAR): CARDINAL;
BEGIN
CASE CHR( BITSET(ORD(d)) + BITSET{5} ) OF (* lowercase *)
'm': RETURN 1000;
| 'd': RETURN 500;
| 'c': RETURN 100;
| 'l': RETURN 50;
| 'x': RETURN 10;
| 'v': RETURN 5;
| 'i': RETURN 1;
ELSE
RETURN 0;
END;
END Digit;
BEGIN
len := Length(s);
acc := 0;
FOR i := 0 TO len-1 DO
d := Digit(s[i]);
IF d=0 THEN RETURN 0; END;
IF (i # len-1) AND (d < Digit(s[i+1])) THEN
acc := acc - d;
ELSE
acc := acc + d;
END;
END;
RETURN acc;
END DecodeRoman;
 
PROCEDURE Show(s: ARRAY OF CHAR);
BEGIN
WriteString(s);
WriteString(": ");
WriteCard(DecodeRoman(s), 0);
WriteLn();
END Show;
 
BEGIN
Show("MCMXC");
Show("MDCLXVI");
Show("mmvii");
Show("mmxxi");
END RomanNumerals.</syntaxhighlight>
{{out}}
<pre>MCMXC: 1990
MDCLXVI: 1666
mmvii: 2007
mmxxi: 2021</pre>
 
=={{header|Nanoquery}}==
{{trans|Java}}
<langsyntaxhighlight Nanoquerylang="nanoquery">def decodeSingle(letter)
if letter = "M"
return 1000
Line 3,940 ⟶ 5,057:
println decode("MCMXC")
println decode("MMVIII")
println decode("MDCLXVI")</langsyntaxhighlight>
{{out}}
<pre>1990
Line 3,947 ⟶ 5,064:
 
=={{header|NetRexx}}==
<langsyntaxhighlight NetRexxlang="netrexx">/* NetRexx */
options replace format comments java crossref savelog symbols binary
 
Line 3,995 ⟶ 5,112:
end
 
return digit</langsyntaxhighlight>
{{out}}
<pre>
Line 4,005 ⟶ 5,122:
=={{header|Nim}}==
{{trans|Python}}
<langsyntaxhighlight lang="nim">import tables
 
let rdecode = {'M': 1000, 'D': 500, 'C': 100, 'L': 50, 'X': 10, 'V': 5, 'I': 1}.toTable
 
proc decode(roman: string): int =
for i in 0 .. < roman.high:
let (rd, rd1) = (rdecode[roman[i]], rdecode[roman[i+1]])
result += (if rd < rd1: -rd else: rd)
Line 4,016 ⟶ 5,133:
 
for r in ["MCMXC", "MMVIII", "MDCLXVI"]:
echo r, " ", decode(r)</langsyntaxhighlight>
 
{{out}}
<pre>MCMXC 1990
MMVIII 2008
MDCLXVI 1666</pre>
 
=={{header|OCaml}}==
<langsyntaxhighlight lang="ocaml">let decimal_of_roman roman =
let arabic = ref 0 in
let lastval = ref 0 in
Line 4,045 ⟶ 5,167:
Printf.printf " %d\n" (decimal_of_roman "MMVIII");
Printf.printf " %d\n" (decimal_of_roman "MDCLXVI");
;;</langsyntaxhighlight>
=== Another implementation ===
Another implementation, a bit more OCaml-esque: no mutable variables, and a recursive function instead of a for loop.
{{works with|OCaml|4.03+}}
<langsyntaxhighlight lang="ocaml">
(* Scan the roman number from right to left. *)
(* When processing a roman digit, if the previously processed roman digit was
Line 4,107 ⟶ 5,229:
print_endline (testit "2 * PI ^ 2" 1); (* The I in PI... *)
print_endline (testit "E = MC^2" 1100)
</syntaxhighlight>
</lang>
Output:
<pre>
Line 4,129 ⟶ 5,251:
 
=={{header|PARI/GP}}==
<langsyntaxhighlight lang="parigp">fromRoman(s)={
my(v=Vecsmall(s),key=vector(88),cur,t=0,tmp);
key[73]=1;key[86]=5;key[88]=10;key[76]=50;key[67]=100;key[68]=500;key[77]=1000;
Line 4,145 ⟶ 5,267:
);
t+cur
};</langsyntaxhighlight>
 
=={{header|Perl}}==
<langsyntaxhighlight Perllang="perl">use 5.10.0;
 
{
Line 4,172 ⟶ 5,294:
}
 
say "$_: ", from_roman($_) for qw(MCMXC MDCLXVI MMVIII);</langsyntaxhighlight>
{{out}}
<pre>MCMXC: 1990
Line 4,178 ⟶ 5,300:
MMVIII: 2008</pre>
=== Alternate ===
<langsyntaxhighlight lang="perl">#!/usr/bin/perl
 
use strict;
Line 4,197 ⟶ 5,319:
MCMXC
MMVIII
MDCLXVI</langsyntaxhighlight>
{{out}}
<pre>
Line 4,205 ⟶ 5,327:
</pre>
=== Another Alternate ===
<langsyntaxhighlight lang="perl">#!/usr/bin/perl
 
use strict;
Line 4,230 ⟶ 5,352:
MCMXC
MMVIII
MDCLXVI</langsyntaxhighlight>
{{out}}
<pre>
Line 4,239 ⟶ 5,361:
 
=={{header|Phix}}==
<!--(phixonline)-->
<lang Phix>constant romans = "MDCLXVI",
<syntaxhighlight lang="phix">
decmls = {1000,500,100,50,10,5,1}
with javascript_semantics
 
function romanDec(string s)
integer n, prev integer res = 0, resprev = 0
for i=length(s) to 1 by -1 do
ninteger rdx = decmls[find(upper(s[i]),romans"IVXLCDM")],
if n<prev then n = 0-n end if rn = power(10,floor((rdx-1)/2))
resif +even(rdx) then rn *= n5 end if
prevres += niff(rn<prev?-rn:rn)
prev = rn
end for
return {s,res} -- (for output)
end function</lang>
 
?apply({"MCMXC","MMVIII","MDCLXVI"},romanDec)
</syntaxhighlight>
{{out}}
<pre>
{{"MCMXC",1990},{"MMVIII",2008},{"MDCLXVI",1666}}
</pre>
=== cheating slightly ===
<syntaxhighlight lang="phix">
with javascript_semantics
requires("1.0.5")
function romanDec(string s)
return {s,scanf(s,"%R")[1][1]}
end function
</syntaxhighlight>
same output, if applied the same way as above, error handling omitted
 
=={{header|Phixmonti}}==
<langsyntaxhighlight Phixmontilang="phixmonti">def romanDec /# s -- n #/
0 >ps 0 >ps
( ( "M" 1000 ) ( "D" 500 ) ( "C" 100 ) ( "L" 50 ) ( "X" 10 ) ( "V" 5 ) ( "I" 1 ) )
Line 4,275 ⟶ 5,414:
enddef
 
/# usage example: "MMXX" romanDec ? (show 2020) #/</langsyntaxhighlight>
 
More traditional solution:
 
<langsyntaxhighlight Phixmontilang="phixmonti">"MDCLXVI" var romans
( 1000 500 100 50 10 5 1 ) var decmls
 
Line 4,300 ⟶ 5,439:
drop
res
enddef</langsyntaxhighlight>
 
=={{header|PHP}}==
<langsyntaxhighlight PHPlang="php"><?php
/**
* @author Elad Yosifon
Line 4,388 ⟶ 5,527:
{
echo "($key == {$value[0]}) => " . ($value[0] === $value[1] ? "true" : "false, should be {$value[1]}.") . "\n";
}</langsyntaxhighlight>
{{out}}
<pre>
Line 4,412 ⟶ 5,551:
(MCMLXXVII == 1977) => true
</pre>
 
=={{header|Picat}}==
<syntaxhighlight lang="picat">go =>
List = ["IV",
"XLII",
"M",
"MCXI",
"CMXI",
"MCM",
"MCMXC",
"MMVIII",
"MMIX",
"MCDXLIV",
"MDCLXVI",
"MMXII"],
foreach(R in List)
printf("%-8s: %w\n", R, roman_decode(R))
end,
nl.
 
 
roman_decode(Str) = Res =>
if Str == "" then
Res := ""
else
D = new_map(findall((R=D), roman(R,D))),
Res = 0,
Old = 0,
foreach(S in Str)
N = D.get(S),
% Fix for the Roman convention that XC = 90, not 110.
if Old > 0, N > Old then
Res := Res - 2*Old
end,
Res := Res + N,
Old := N
end
end.
 
roman('I', 1).
roman('V', 5).
roman('X', 10).
roman('L', 50).
roman('C', 100).
roman('D', 500).
roman('M', 1000).</syntaxhighlight>
 
{{out}}
<pre>IV : 4
XLII : 42
M : 1000
MCXI : 1111
CMXI : 911
MCM : 1900
MCMXC : 1990
MMVIII : 2008
MMIX : 2009
MCDXLIV : 1444
MDCLXVI : 1666
MMXII : 2012</pre>
 
 
=={{header|PicoLisp}}==
<langsyntaxhighlight PicoLisplang="picolisp">(de roman2decimal (Rom)
(let L (replace (chop Rom) 'M 1000 'D 500 'C 100 'L 50 'X 10 'V 5 'I 1)
(sum '((A B) (if (>= A B) A (- A))) L (cdr L)) ) )</langsyntaxhighlight>
Test:
<pre>: (roman2decimal "MCMXC")
Line 4,428 ⟶ 5,628:
 
=={{header|PL/I}}==
<syntaxhighlight lang="pl/i">
<lang PL/I>
test_decode: procedure options (main); /* 28 January 2013 */
declare roman character (20) varying;
Line 4,475 ⟶ 5,675:
 
end test_decode;
</syntaxhighlight>
</lang>
<pre>
i 1
Line 4,497 ⟶ 5,697:
MMXIII 2013
</pre>
 
=={{header|PL/M}}==
<syntaxhighlight lang="plm">100H:
/* CP/M CALLS */
BDOS: PROCEDURE (FN, ARG); DECLARE FN BYTE, ARG ADDRESS; GO TO 5; END BDOS;
EXIT: PROCEDURE; CALL BDOS(0,0); END EXIT;
PRINT: PROCEDURE (S); DECLARE S ADDRESS; CALL BDOS(9,S); END PRINT;
 
/* CP/M COMMAND LINE ARGUMENT */
DECLARE ARG$LPTR ADDRESS INITIAL (80H), ARG$LEN BASED ARG$LPTR BYTE;
DECLARE ARG$PTR ADDRESS INITIAL (81H), ARG BASED ARG$PTR BYTE;
 
/* CONVERT ROMAN NUMERAL TO BINARY */
READ$ROMAN: PROCEDURE (RP) ADDRESS;
DECLARE DIGITS (7) BYTE INITIAL ('MDCLXVI');
DECLARE VALUES (7) ADDRESS INITIAL (1000,500,100,50,10,5,1);
DECLARE (RP, V, DVAL) ADDRESS, R BASED RP BYTE;
V = 0;
GET$DIGIT: PROCEDURE (D) ADDRESS;
DECLARE (D, I) BYTE;
DO I = 0 TO LAST(DIGITS);
IF DIGITS(I) = D THEN RETURN VALUES(I);
END;
RETURN 0; /* NOT FOUND */
END GET$DIGIT;
DO WHILE R <> '$';
DVAL = GET$DIGIT(R);
IF DVAL = 0 THEN RETURN 0; /* ERROR */
RP = RP + 1;
IF GET$DIGIT(R) > DVAL THEN
V = V - DVAL; /* SUBTRACTIVE PRINCIPLE */
ELSE
V = V + DVAL;
END;
RETURN V;
END READ$ROMAN;
 
/* PRINT BINARY NUMBER AS DECIMAL */
PRINT$NUMBER: PROCEDURE (N);
DECLARE S (6) BYTE INITIAL ('.....$');
DECLARE (N, P) ADDRESS, C BASED P BYTE;
P = .S(5);
DIGIT:
P = P - 1;
C = N MOD 10 + '0';
N = N / 10;
IF N > 0 THEN GO TO DIGIT;
CALL PRINT(P);
END PRINT$NUMBER;
 
IF ARG$LEN = 0 THEN DO;
CALL PRINT(.'NO INPUT$');
CALL EXIT;
END;
 
ARG(ARG$LEN) = '$'; /* TERMINATE ARGUMENT STRING */
CALL PRINT(.ARG(1)); /* PRINT ROMAN NUMERAL */
CALL PRINT(.': $');
CALL PRINT$NUMBER(READ$ROMAN(.ARG(1))); /* CONVERT AND PRINT VALUE */
CALL EXIT;
EOF</syntaxhighlight>
 
{{out}}
 
<pre>A>ROMAN MCMXC
MCMXC: 1990
A>ROMAN MDCLXVI
MDCLXVI: 1666
A>ROMAN MMVII
MMVII: 2007
A>ROMAN MMXXI
MMXXI: 2021</pre>
 
=={{header|PL/SQL}}==
 
<syntaxhighlight lang="pl/sql">
<lang PL/SQL>
/*****************************************************************
* $Author: Atanas Kebedjiev $
Line 4,584 ⟶ 5,858:
 
END;
</syntaxhighlight>
</lang>
 
=={{header|PowerShell}}==
<syntaxhighlight lang="powershell">
<lang PowerShell>
Filter FromRoman {
function ConvertFrom-RomanNumeral
$output = 0
{
<#
if ($_ -notmatch '^(M{1,3}|)(CM|CD|D?C{0,3}|)(XC|XL|L?X{0,3}|)(IX|IV|V?I{0,3}|)$') {
.SYNOPSIS
throw 'Incorrect format'
Converts a roman numeral to a number.
}
.DESCRIPTION
Converts a roman numeral - in the range of I..MMMCMXCIX - to a number.
$current = 1000
.PARAMETER Numeral
$subtractor = 'M'
A roman numeral in the range I..MMMCMXCIX (1..3,999).
$whole = $False
.INPUTS
$roman = $_
System.String
'C','D','X','L','I','V',' ' `
.OUTPUTS
| %{
System.Int32
if ($whole = !$whole) {
.NOTES
$current /= 10
Requires PowerShell version 3.0
$subtractor = $_ + $subtractor[0]
.EXAMPLE
$_ = $subtractor[1]
ConvertFrom-RomanNumeral -Numeral MMXIV
}
.EXAMPLE
else {
"MMXIV" | ConvertFrom-RomanNumeral
$subtractor = $subtractor[0] + $_
#>
}
[CmdletBinding()]
[OutputType([int])]
if ($roman -match $subtractor) {
Param
$output += $current * (4,9)[$whole]
(
$roman = $roman -replace $subtractor,''
[Parameter(Mandatory=$true,
}
HelpMessage="Enter a roman numeral in the range I..MMMCMXCIX",
if ($roman -match ($_ + '{1,3}')) {
ValueFromPipeline=$true,
$output += $current * (5,10)[$whole] * $Matches[0].Length
Position=0)]
}
[ValidatePattern("(?x)^
}
M{0,3} # Thousands
(CM|CD|D?C{0,3}) # Hundreds
$output
(XC|XL|L?X{0,3}) # Tens
(IX|IV|V?I{0,3}) # Ones
$")]
[string]
$Numeral
)
 
Begin
{
# This must be an [ordered] hashtable
$RomanToDecimal = [ordered]@{
M = 1000
CM = 900
D = 500
CD = 400
C = 100
XC = 90
L = 50
XL = 40
X = 10
IX = 9
V = 5
IV = 4
I = 1
}
}
Process
{
$roman = $Numeral + '$'
$value = 0
 
do
{
foreach ($key in $RomanToDecimal.Keys)
{
if ($key.Length -eq 1)
{
if ($key -match $roman.Substring(0,1))
{
$value += $RomanToDecimal.$key
$roman = $roman.Substring(1)
break
}
}
else
{
if ($key -match $roman.Substring(0,2))
{
$value += $RomanToDecimal.$key
$roman = $roman.Substring(2)
break
}
}
}
}
until ($roman -eq '$')
 
$value
}
}
</syntaxhighlight>
</lang>
<syntaxhighlight lang="powershell">
<lang PowerShell>
'XIX','IV','','MMCDLXXIX','MMMI' | FromRoman
-split "MM MMI MMII MMIII MMIV MMV MMVI MMVII MMVIII MMIX MMX MMXI MMXII MMXIII MMXIV MMXV MMXVI" | ConvertFrom-RomanNumeral
</syntaxhighlight>
</lang>
{{Out}}
<pre>
19
2000
4
2001
0
2002
2479
2003
3001
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
</pre>
 
=={{header|Prolog}}==
<langsyntaxhighlight Prologlang="prolog">decode_digit(i, 1).
decode_digit(v, 5).
decode_digit(x, 10).
Line 4,736 ⟶ 5,940:
decode_string(mcmxc, 1990),
decode_string(mmviii, 2008),
decode_string(mdclxvi, 1666).</langsyntaxhighlight>
The program above contains its own test predicate.
The respective goal succeeds.
Therefore the test passes.
 
=={{header|PureBasic}}==
<lang PureBasic>Procedure romanDec(roman.s)
Protected i, n, lastval, arabic
For i = Len(roman) To 1 Step -1
Select UCase(Mid(roman, i, 1))
Case "M"
n = 1000
Case "D"
n = 500
Case "C"
n = 100
Case "L"
n = 50
Case "X"
n = 10
Case "V"
n = 5
Case "I"
n = 1
Default
n = 0
EndSelect
If (n < lastval)
arabic - n
Else
arabic + n
EndIf
lastval = n
Next
ProcedureReturn arabic
EndProcedure
 
If OpenConsole()
PrintN(Str(romanDec("MCMXCIX"))) ;1999
PrintN(Str(romanDec("MDCLXVI"))) ;1666
PrintN(Str(romanDec("XXV"))) ;25
PrintN(Str(romanDec("CMLIV"))) ;954
PrintN(Str(romanDec("MMXI"))) ;2011
Print(#CRLF$ + #CRLF$ + "Press ENTER to exit"): Input()
CloseConsole()
EndIf</lang>
{{out}}
<pre>1999
1666
25
954
2011</pre>
 
=={{header|Python}}==
===Imperative===
<langsyntaxhighlight lang="python">_rdecode = dict(zip('MDCLXVI', (1000, 500, 100, 50, 10, 5, 1)))
 
def decode( roman ):
Line 4,805 ⟶ 5,958:
if __name__ == '__main__':
for r in 'MCMXC MMVIII MDCLXVI'.split():
print( r, decode(r) )</langsyntaxhighlight>
{{out}}
<pre>MCMXC 1990
Line 4,812 ⟶ 5,965:
 
Another version, which I believe has clearer logic:
<langsyntaxhighlight lang="python">roman_values = (('I',1), ('IV',4), ('V',5), ('IX',9),('X',10),('XL',40),('L',50),('XC',90),('C',100),
('CD', 400), ('D', 500), ('CM', 900), ('M',1000))
 
Line 4,826 ⟶ 5,979:
for value in "MCMXC", "MMVIII", "MDCLXVI":
print('%s = %i' % (value, roman_value(value)))
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 4,837 ⟶ 5,990:
===Declarative===
Less clear, but a 'one liner':
<langsyntaxhighlight lang="python">numerals = { 'M' : 1000, 'D' : 500, 'C' : 100, 'L' : 50, 'X' : 10, 'V' : 5, 'I' : 1 }
def romannumeral2number(s):
return reduce(lambda x, y: -x + y if x < y else x + y, map(lambda x: numerals.get(x, 0), s.upper()))</langsyntaxhighlight>
 
 
Line 4,846 ⟶ 5,999:
{{Trans|Haskell}}
{{Works with|Python|3}}
<langsyntaxhighlight lang="python">'''Roman numerals decoded'''
 
from operator import mul
Line 4,860 ⟶ 6,013:
characters are unrecognised.
'''
def go(mb, x):
'''Just a letter value added to or
subtracted from a total, or Nothing
if no letter value is defined.
'''
if mb.get('Nothing') or None is x:
return Nothing()
else:
r, total = mb.get('Just')
return Just((
x,
total + (-x if x < r else x)
))
 
dct = defaultdict(
lambda: None,
Line 4,881 ⟶ 6,020:
)
)
return bindMay(
reduce(
go,
[dct[k.upper()] for k in reversed(list(s))],
Just((0, 0))
)
)(compose(Just)(snd))
 
def go(mb, x):
'''Just a letter value added to or
subtracted from a total, or Nothing
if no letter value is defined.
'''
if None in (mb, x):
return None
else:
r, total = mb
return x, total + (-x if x < r else x)
 
return bindMay(reduce(
go,
[dct[k.upper()] for k in reversed(list(s))],
(0, 0)
))(snd)
 
 
# TEST ----------------------------------------------------
# ------------------------- TEST -------------------------
def main():
'''Testing a sample of dates.'''
Line 4,906 ⟶ 6,055:
 
 
# GENERIC ------------------------- GENERIC ------------------------
 
# Just :: a -> Maybe a
def Just(x):
'''Constructor for an inhabited Maybe (option type) value.'''
return {'type': 'Maybe', 'Nothing': False, 'Just': x}
 
 
# Nothing :: Maybe a
def Nothing():
'''Constructor for an empty Maybe (option type) value.'''
return {'type': 'Maybe', 'Nothing': True}
 
 
# bindMay (>>=) :: Maybe a -> (a -> Maybe b) -> Maybe b
Line 4,927 ⟶ 6,064:
of the (a -> Maybe b) function (mf) to x.'''
return lambda mf: (
m if None is m.get('Nothing') else mf(m.get('Just'))
)
 
 
# compose (<<<) :: (b -> c) -> (a -> b) -> a -> c
def compose(g):
'''Right to left function composition.'''
return lambda f: lambda x: g(f(x))
 
 
Line 4,943 ⟶ 6,074:
where m is Just(x).
'''
return lambda f: lambda m: v if None is m.get('Nothing') else (
f(m.get('Just'))
)
 
 
# snd :: (a, b) -> b
def snd(tplab):
'''Second member of a pair.'''
return tplab[1]
 
 
# FORMATTING ------------------------ FORMATTING ----------------------
 
# fTable :: String -> (a -> String) ->
# (b -> String) -> (a -> b) -> [a] -> String
def fTable(s):
'''Heading -> x display function -> fx display function ->
fx display function -> f -> xs -> tabular string.
'''
def go(xShow, fxShow, f, xs):
Line 4,966 ⟶ 6,097:
w = max(map(len, ys))
return s + '\n' + '\n'.join(map(
lambda x, y: y.rjust(w, ' ') + ' -> ' + fxShow(f(x)),
f'{y.rjust(w, " ")} -> {fxShow(f(x))}'
),
xs, ys
))
return lambda xShow: lambda fxShow: lambda f: lambda xs: go(
lambda xs: go(xShow, fxShow, f, xs)
)
 
Line 4,976 ⟶ 6,109:
# MAIN ---
if __name__ == '__main__':
main()</langsyntaxhighlight>
{{Out}}
<pre>Roman numerals decoded:
Line 4,987 ⟶ 6,120:
MMZZIII -> (Contains unknown character)</pre>
 
=={{header|RQuackery}}==
<syntaxhighlight lang="quackery"> [ 2dup <
if
[ dip
[ 2 * - ]
dup ]
nip dup
rot + swap ] is roman ( t p n --> t p )
[ 1 roman ] is I ( t p --> t p )
[ 5 roman ] is V ( t p --> t p )
[ 10 roman ] is X ( t p --> t p )
[ 50 roman ] is L ( t p --> t p )
[ 100 roman ] is C ( t p --> t p )
[ 500 roman ] is D ( t p --> t p )
[ 1000 roman ] is M ( t p --> t p )
[ 0 1000 rot
$ "" swap
witheach
[ space join
join ]
quackery
drop ] is ->arabic ( $ --> n )
$ " MCMXC" dup echo$ say " = " ->arabic echo cr
$ " MMVIII" dup echo$ say " = " ->arabic echo cr
$ "MDCLXVI" dup echo$ say " = " ->arabic echo cr
cr
$ "I MIX VIVID MILD MIMIC"
dup echo$ say " = " ->arabic echo cr
</syntaxhighlight>
{{Out}}
<pre> MCMXC = 1990
MMVIII = 2008
MDCLXVI = 1666
 
I MIX VIVID MILD MIMIC = 3063</pre>
 
 
 
=={{header|R}}==
===version 1===
Modelled along the lines of other decode routines on this page, but using a vectorised approach
<langsyntaxhighlight Rlang="r">romanToArabic <- function(roman) {
romanLookup <- c(I=1L, V=5L, X=10L, L=50L, C=100L, D=500L, M=1000L)
rSplit <- strsplit(toupper(roman), character(0)) # Split input vector into characters
Line 5,003 ⟶ 6,176:
}
vapply(rSplit, toArabic, integer(1))
}</langsyntaxhighlight>
 
Example usage:
<langsyntaxhighlight Rlang="r">romanToArabic(c("MCMXII", "LXXXVI"))</langsyntaxhighlight>
 
===version 2===
Using built-in functionality in R
 
<langsyntaxhighlight Rlang="r">as.integer(as.roman(c("MCMXII", "LXXXVI"))</langsyntaxhighlight>
 
=={{header|Racket}}==
<langsyntaxhighlight Racketlang="racket">#lang racket
(define (decode/roman number)
(define letter-values
Line 5,030 ⟶ 6,203:
 
(map decode/roman '("MCMXC" "MMVIII" "MDCLXVI"))
;-> '(1990 2008 1666)</langsyntaxhighlight>
 
=={{header|Raku}}==
(formerly Perl 6)
A non-validating version:
<syntaxhighlight lang="raku" perl6line>sub rom-to-num($r) {
[+] gather $r.uc ~~ /
^
Line 5,057 ⟶ 6,230:
}
 
say "$_ => &rom-to-num($_)" for <MCMXC MDCLXVI MMVIII>;</langsyntaxhighlight>
{{out}}
<pre>MCMXC => 1990
Line 5,063 ⟶ 6,236:
MMVIII => 2008</pre>
A validating version. Also handles older forms such as 'IIXX' and "IIII".
<syntaxhighlight lang="raku" perl6line>sub rom-to-num($r) {
[+] gather $r.uc ~~ /
^
Line 5,077 ⟶ 6,250:
}
 
say "$_ => ", rom-to-num($_) for <MCMXC mdclxvi MMViii IIXX ILL>;</langsyntaxhighlight>
{{out}}
<pre>MCMXC => 1990
Line 5,088 ⟶ 6,261:
===version 1===
 
<langsyntaxhighlight Redlang="red">Red [
Purpose: "Arabic <-> Roman numbers converter"
Author: "Didier Cadieu"
Line 5,106 ⟶ 6,279:
print roman-to-arabic "MDCCCLXXXVIII"
print roman-to-arabic "MMXVI"
</syntaxhighlight>
</lang>
 
=={{header|REFAL}}==
<syntaxhighlight lang="refal">$ENTRY Go {
= <Prout <RomanDecode 'MCMXC'>>
<Prout <RomanDecode 'MMVIII'>>
<Prout <RomanDecode 'MDCLXVI'>>;
};
 
RomanDecode {
= 0;
e.D, <Upper e.D>: {
'M' e.R = <+ 1000 <RomanDecode e.R>>;
'CM' e.R = <+ 900 <RomanDecode e.R>>;
'D' e.R = <+ 500 <RomanDecode e.R>>;
'CD' e.R = <+ 400 <RomanDecode e.R>>;
'C' e.R = <+ 100 <RomanDecode e.R>>;
'XC' e.R = <+ 90 <RomanDecode e.R>>;
'L' e.R = <+ 50 <RomanDecode e.R>>;
'XL' e.R = <+ 40 <RomanDecode e.R>>;
'X' e.R = <+ 10 <RomanDecode e.R>>;
'IX' e.R = <+ 9 <RomanDecode e.R>>;
'V' e.R = <+ 5 <RomanDecode e.R>>;
'IV' e.R = <+ 4 <RomanDecode e.R>>;
'I' e.R = <+ 1 <RomanDecode e.R>>;
};
};</syntaxhighlight>
{{out}}
<pre>1990
2008
1666</pre>
 
=={{header|REXX}}==
Line 5,114 ⟶ 6,317:
{{Works with|ooRexx}}
 
<langsyntaxhighlight REXXlang="rexx">/* Rexx */
 
Do
Line 5,176 ⟶ 6,379:
Return digit
End
Exit</langsyntaxhighlight>
{{out}}
<pre>
Line 5,196 ⟶ 6,399:
:::* &nbsp; the &nbsp; '''j''' &nbsp; and &nbsp; '''u''' &nbsp; numerals
:::* &nbsp; (deep) parenthesis type Roman numbers
<langsyntaxhighlight lang="rexx">/*REXX program converts Roman numeral number(s) ───► Arabic numerals (or numbers). */
rYear = 'MCMXC' ; say right(rYear, 9)":" rom2dec(rYear)
rYear = 'mmviii' ; say right(rYear, 9)":" rom2dec(rYear)
Line 5,221 ⟶ 6,424:
if _=='D' then return 500
if _=='M' then return 1000
return 0 /*indicate an invalid Roman numeral. */</langsyntaxhighlight>
 
===version 3===
Line 5,243 ⟶ 6,446:
<br>Also note that &nbsp; '''IIII''' &nbsp; is a legal Roman numeral construct; &nbsp; (as demonstrated by almost any old clock or
<br>"dialed" wristwatch that has Roman numerals).
<langsyntaxhighlight lang="rexx">/*REXX program converts Roman numeral number(s) ───► Arabic numerals (or numbers). */
numeric digits 1000 /*so we can handle the big numbers. */
parse arg z /*obtain optional arguments from the CL*/
Line 5,268 ⟶ 6,471:
else #=#+_ /* else add. */
end /*k*/
return # /*return Arabic number. */</langsyntaxhighlight>
'''output''' &nbsp; when using the default inputs:
<pre>
Line 5,282 ⟶ 6,485:
 
=={{header|Ring}}==
<langsyntaxhighlight lang="ring">
symbols = "MDCLXVI"
weights = [1000,500,100,50,10,5,1]
Line 5,304 ⟶ 6,507:
next
return arabic
</syntaxhighlight>
</lang>
 
=={{header|RPL}}==
{{works with|Halcyon Calc|4.2.7}}
{| class="wikitable"
! RPL code
! Comment
|-
|
≪ DUP SIZE "IVXLCDM" { 1 5 10 50 100 500 1000 }
→ rom siz dig val
≪ 0 1 siz '''FOR''' j
rom j DUP SUB
'''IF''' dig SWAP POS '''THEN''' val LAST GET '''END'''
'''IF''' DUP2 < '''THEN''' SWAP NEG SWAP '''END'''
'''NEXT'''
0 1 siz '''START''' + '''NEXT''' +
≫ ≫ ''''ROM→'''' STO
|
'''ROM→''' ''( "ROMAN" -- n )''
store input string, length and tables
scan string from highest digit
get jth character
if char in the table then push its value into stack
if > to previous value then change sign of previous value
sum the stack
.
|}
 
=={{header|Ruby}}==
<langsyntaxhighlight lang="ruby">def fromRoman(roman)
r = roman.upcase
n = 0
Line 5,334 ⟶ 6,565:
end
 
[ "MCMXC", "MMVIII", "MDCLXVI" ].each {|r| p r => fromRoman(r)}</langsyntaxhighlight>
 
{{out}}
Line 5,343 ⟶ 6,574:
</pre>
or
<langsyntaxhighlight lang="ruby">SYMBOLS = [ ['M', 1000], ['CM', 900], ['D', 500], ['CD', 400], ['C', 100], ['XC', 90],
['L', 50], ['XL', 40], ['X', 10], ['IX', 9], ['V', 5], ['IV', 4], ['I', 1] ]
 
Line 5,353 ⟶ 6,584:
end
 
[ "MCMXC", "MMVIII", "MDCLXVI" ].each {|r| puts "%8s :%5d" % [r, parseRoman(r)]}</langsyntaxhighlight>
 
{{out}}
Line 5,361 ⟶ 6,592:
MDCLXVI : 1666
</pre>
 
=={{header|Run BASIC}}==
<lang runbasic>print "MCMXCIX = "; romToDec( "MCMXCIX") '1999
print "MDCLXVI = "; romToDec( "MDCLXVI") '1666
print "XXV = "; romToDec( "XXV") '25
print "CMLIV = "; romToDec( "CMLIV") '954
print "MMXI = "; romToDec( "MMXI") '2011
 
function romToDec(roman$)
for i = len(roman$) to 1 step -1
x$ = mid$(roman$, i, 1)
n = 0
if x$ = "M" then n = 1000
if x$ = "D" then n = 500
if x$ = "C" then n = 100
if x$ = "L" then n = 50
if x$ = "X" then n = 10
if x$ = "V" then n = 5
if x$ = "I" then n = 1
if n < preNum then num = num - n else num = num + n
preNum = n
next
romToDec =num
end function</lang>
 
=={{header|Rust}}==
<langsyntaxhighlight lang="rust">struct RomanNumeral {
symbol: &'static str,
value: u32
Line 5,423 ⟶ 6,628:
println!("{:2$} = {}", r, to_hindu(r), 15);
}
}</langsyntaxhighlight>
{{out}}
<pre>MMXIV = 2014
Line 5,432 ⟶ 6,637:
 
=={{header|Scala}}==
<langsyntaxhighlight Scalalang="scala">def fromRoman( r:String ) : Int = {
val arabicNumerals = List("CM"->900,"M"->1000,"CD"->400,"D"->500,"XC"->90,"C"->100,
"XL"->40,"L"->50,"IX"->9,"X"->10,"IV"->4,"V"->5,"I"->1)
Line 5,457 ⟶ 6,662:
test("MCMXC")
test("MMVIII")
test("MDCLXVI")</langsyntaxhighlight>
{{out}}
<pre>MCMXC => 1990
Line 5,467 ⟶ 6,672:
{{works with|Gauche Scheme}}
 
<langsyntaxhighlight Schemelang="scheme">(use gauche.collection) ;; for fold2
 
(define (char-val char)
Line 5,479 ⟶ 6,684:
0 0
(map char-val (reverse (string->list roman)))))
</syntaxhighlight>
</lang>
 
<b>Testing:</b>
<langsyntaxhighlight Schemelang="scheme">(for-each
(^s (format #t "~7d: ~d\n" s (decode s)))
'("MCMLVI" "XXC" "MCMXC" "XXCIII" "IIIIX" "MIM" "LXXIIX"))
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 5,498 ⟶ 6,703:
 
=={{header|Seed7}}==
<langsyntaxhighlight lang="seed7">$ include "seed7_05.s7i";
 
const func integer: ROMAN parse (in string: roman) is func
Line 5,533 ⟶ 6,738:
writeln(ROMAN parse "MMVIII");
writeln(ROMAN parse "MDCLXVI");
end func;</langsyntaxhighlight>
Original source: [http://seed7.sourceforge.net/algorith/puzzles.htm#decode_roman_numerals]
{{out}}
Line 5,543 ⟶ 6,748:
 
=={{header|SenseTalk}}==
<langsyntaxhighlight lang="sensetalk">function RomanNumeralsDecode numerals
put {
"M": 1000,
Line 5,563 ⟶ 6,768:
end repeat
return total
end RomanNumeralsDecode</langsyntaxhighlight>
 
<langsyntaxhighlight lang="sensetalk">repeat for each item in [
"MCMXC",
"MMVIII",
Line 5,572 ⟶ 6,777:
put RomanNumeralsDecode(it)
end repeat
</syntaxhighlight>
</lang>
 
{{out}}
Line 5,582 ⟶ 6,787:
 
=={{header|Sidef}}==
<langsyntaxhighlight lang="ruby">func roman2arabic(roman) {
 
var arabic = 0
Line 5,609 ⟶ 6,814:
%w(MCMXC MMVIII MDCLXVI).each { |roman_digit|
"%-10s == %d\n".printf(roman_digit, roman2arabic(roman_digit))
}</langsyntaxhighlight>
{{out}}
<pre>
Line 5,618 ⟶ 6,823:
 
Simpler solution:
<langsyntaxhighlight lang="ruby">func roman2arabic(digit) {
digit.uc.trans([
:M: '1000+',
Line 5,638 ⟶ 6,843:
%w(MCMXC MMVIII MDCLXVI).each { |roman_num|
say "#{roman_num}\t-> #{roman2arabic(roman_num)}";
}</langsyntaxhighlight>
{{out}}
<pre>
Line 5,647 ⟶ 6,852:
 
=={{header|Simula}}==
<langsyntaxhighlight lang="simula">BEGIN
 
INTEGER PROCEDURE FROMROMAN(S); TEXT S;
Line 5,692 ⟶ 6,897:
 
END PROGRAM;
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 5,701 ⟶ 6,906:
 
=={{header|SNOBOL4}}==
<langsyntaxhighlight SNOBOL4lang="snobol4">* Roman to Arabic
define('arabic(n)s,ch,val,sum,x') :(arabic_end)
arabic s = 'M1000 D500 C100 L50 X10 V5 I1 '
Line 5,717 ⟶ 6,922:
astr = astr r '=' arabic(r) ' ' :(tloop)
out output = astr
end</langsyntaxhighlight>
{{out}}
<pre>MMX=2010 MCMXCIX=1999 MCDXCII=1492 MLXVI=1066 CDLXXVI=476</pre>
Here's an alternative version, which is maybe more SNOBOL4-idiomatic and less like one might program it in a more common language:
<langsyntaxhighlight SNOBOL4lang="snobol4">* Roman to Arabic
define("arabic1(romans,arabic1)rdigit,adigit,b4")
romans1 = " 0 IX9 IV4 III3 II2 I1 VIII8 VII7 VI6 V5" :(arabic1_end)
Line 5,735 ⟶ 6,940:
astr = astr r '=' arabic1(r) ' ' :(tloop)
out output = astr
end</langsyntaxhighlight>
The output is the same as in the earlier version.
 
Line 5,741 ⟶ 6,946:
This allows removing several labels and explicit transfers of control, and moves some of the looping into the pattern matcher.
Again, the output is the same.
<langsyntaxhighlight SNOBOL4lang="snobol4">* Roman to Arabic
define("arabic1(romans,arabic1)rdigit,adigit,b4")
romans1 = " 0 IX9 IV4 III3 II2 I1 VIII8 VII7 VI6 V5" :(arabic1_end)
Line 5,753 ⟶ 6,958:
tstr span(' ') break(' ') $ r *?(astr = astr r '=' arabic1(r) ' ') fail
output = astr
end</langsyntaxhighlight>
 
=={{header|SPL}}==
<langsyntaxhighlight SPLlang="spl">r2a(r)=
n = [1,5,10,50,100,500,1000]
a,m = 0
Line 5,771 ⟶ 6,976:
> i, 1..#.size(t,1)
#.output(t[i]," = ",r2a(t[i]))
<</langsyntaxhighlight>
{{out}}
<pre>
Line 5,784 ⟶ 6,989:
 
=={{header|Swift}}==
<langsyntaxhighlight lang="swift">extension Int {
init(romanNumerals: String) {
let values = [
Line 5,812 ⟶ 7,017:
}
}
</syntaxhighlight>
</lang>
{{output}}
<langsyntaxhighlight lang="swift">Int(romanNumerals: "MDCLXVI") // 1666</langsyntaxhighlight>
 
=={{header|Tailspin}}==
<langsyntaxhighlight lang="tailspin">
def digits: [(M:1000"1"), (CM:900"1"), (D:500"1"), (CD:400"1"), (C:100"1"), (XC:90"1"), (L:50"1"), (XL:40"1"), (X:10"1"), (IX:9"1"), (V:5"1"), (IV:4"1"), (I:1"1")];
composer decodeRoman
@: 1;
[ <digit>* ] -> \(@: 0"1"; $... -> @: $@ + $; $@ !\)
rule digit: <value>* (@: $@ + 1;)
rule value: <='$digits($@)::key;'> -> $digits($@)::value
end decodeRoman
 
Line 5,833 ⟶ 7,038:
' -> !OUT::write
'MDCLXVI' -> decodeRoman -> !OUT::write
</syntaxhighlight>
</lang>
{{out}}
<pre>
1990"1"
2008"1"
1666"1"
</pre>
 
=={{header|Tcl}}==
As long as we assume that we have a valid roman number, this is most easily done by transforming the number into a sum and evaluating the expression:
<langsyntaxhighlight lang="tcl">proc fromRoman rnum {
set map {M 1000+ CM 900+ D 500+ CD 400+ C 100+ XC 90+ L 50+ XL 40+ X 10+ IX 9+ V 5+ IV 4+ I 1+}
expr [string map $map $rnum]0}
}</langsyntaxhighlight>
Demonstrating:
<langsyntaxhighlight lang="tcl">foreach r {MCMXC MDCLXVI MMVIII} {
puts "$r\t-> [fromRoman $r]"
}</langsyntaxhighlight>
{{out}}
<pre>MCMXC -> 1990
MDCLXVI -> 1666
MMVIII -> 2008</pre>
 
=={{header|TechBASIC}}==
<lang techBASIC>
 
Main:
!------------------------------------------------
! CALLS THE romToDec FUNCTION WITH THE ROMAN
! NUMERALS AND RETURNS ITS DECIMAL EQUIVELENT.
!
PRINT "MCMXC = "; romToDec("MCMXC") !1990
PRINT "MMVIII = "; romToDec("MMVIII") !2008
PRINT "MDCLXVI = "; romToDec("MDCLXVI") !1666
PRINT:PRINT
PRINT "Here are other solutions not from the TASK:"
PRINT "MCMXCIX = "; romToDec("MCMXCIX") !1999
PRINT "XXV = "; romToDec("XXV") !25
PRINT "CMLIV = "; romToDec("CMLIV") !954
PRINT "MMXI = "; romToDec("MMXI") !2011
PRINT:PRINT
PRINT "Without error checking, this also is 2011, but is wrong"
PRINT "MMIIIX = "; romToDec("MMIIIX") !INVAID, 2011
STOP
 
 
FUNCTION romToDec(roman AS STRING) AS INTEGER
!------------------------------------------------------
! FUNCTION THAT CONVERTS ANY ROMAN NUMERAL TO A DECIMAL
!
prenum=0!num=0
ln=LEN(roman)
FOR i=ln TO 1 STEP -1
x$=MID(roman,i,1)
n=1000
SELECT CASE x$
CASE "M":n=n/1
CASE "D":n=n/2
CASE "C":n=n/10
CASE "L":n=n/20
CASE "X":n=n/100
CASE "V":n=n/200
CASE "I":n=n/n
CASE ELSE:n=0
END SELECT
IF n < preNum THEN num=num-n ELSE num=num+n
preNum=n
next i
romToDec=num
 
END FUNCTION
</lang>
 
{{out}}
<pre>
MCMXC = 1990
MMVIII = 2008
MDCLXVI = 1666
 
 
Here are other solutions not from the TASK:
MCMXCIX = 1999
XXV = 25
CMLIV = 954
MMXI = 2011
 
 
Without error checking, this also is 2011, but is wrong
MMIIIX = 2011
</pre>
 
=={{header|TI-83 BASIC}}==
Using the Rom‣Dec function "real(21," from [http://www.detachedsolutions.com/omnicalc/ Omnicalc].
<lang ti83b>PROGRAM:ROM2DEC
:Input Str1
:Disp real(21,Str1)</lang>
 
Using TI-83 BASIC
<lang ti83b>PROGRAM:ROM2DEC
:Input "ROMAN:",Str1
:{1000,500,100,50,10,5,1}➞L1
:0➞P
:0➞Y
:For(I,length(Str1),1,-1)
:inString("MDCLXVI",sub(Str1,I,1))➞X
:If X≤0:Then
:Disp "BAD NUMBER"
:Stop
:End
:L1(x)➞N
:If N<P:Then
:Y–N➞Y
:Else
:Y+N➞Y
:End
:N➞P
:End
:Disp Y</lang>
 
=={{header|TMG}}==
Unix TMG dialect. Version without validation:
<langsyntaxhighlight UnixTMGlang="unixtmg">loop: parse(roman)\loop;
roman: string(!<<MDCLXVI>>) [n=0] num
letter: num/render letter;
Line 5,975 ⟶ 7,081:
render: decimal(n) = { 1 * };
 
n: 0;</langsyntaxhighlight>
 
Unix TMG dialect. Version with validation:
<langsyntaxhighlight UnixTMGlang="unixtmg">loop: [wsz = &a - &n]
parse(line)\loop
parse(error)\loop;
Line 6,013 ⟶ 7,119:
off:0;
wsz:0;
v1: 0; v2: 0; v3: 0;</langsyntaxhighlight>
 
Sample input:
Line 6,034 ⟶ 7,140:
 
=={{header|TUSCRIPT}}==
<langsyntaxhighlight lang="tuscript">$$ MODE TUSCRIPT
LOOP roman_number="MCMXC'MMVIII'MDCLXVI"
arab_number=DECODE (roman_number,ROMAN)
PRINT "Roman number ",roman_number," equals ", arab_number
ENDLOOP</langsyntaxhighlight>
{{out}}
<pre>
Line 6,047 ⟶ 7,153:
 
=={{header|UNIX Shell}}==
<langsyntaxhighlight lang="bash">
#!/bin/bash
 
Line 6,083 ⟶ 7,189:
roman_to_dec MMVIII
roman_to_dec MDCLXVI
</syntaxhighlight>
</lang>
 
=={{header|VBA}}==
Convert Romans (i.e : XVI) in integers
<syntaxhighlight lang="vb">
<lang vb>
Option Explicit
 
Line 6,122 ⟶ 7,228:
End If
End Function
</syntaxhighlight>
</lang>
{{out}}
<pre>III >>> 3
Line 6,145 ⟶ 7,251:
=={{header|VBScript}}==
{{trans|360 Assembly}}
<langsyntaxhighlight lang="vb">' Roman numerals Encode - Visual Basic - 18/04/2019
 
Function toRoman(ByVal value)
Line 6,165 ⟶ 7,271:
code=MsgBox(n & vbCrlf & toRoman(n),vbOKOnly+vbExclamation,"Roman numerals/Encode")
If code=vbOK Then ok=1
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 6,193 ⟶ 7,299:
 
=={{header|Vedit macro language}}==
<langsyntaxhighlight lang="vedit">// Main program for testing the function
//
do {
Line 6,230 ⟶ 7,336:
Reg_Empty(11)
Buf_Quit(OK)
Return</langsyntaxhighlight>
{{out}}
<pre>iv = 4
Line 6,237 ⟶ 7,343:
MCMXC = 1990
MMXI = 2011</pre>
 
=={{header|V (Vlang)}}==
{{trans|Kotlin}}
<syntaxhighlight lang="Zig">
const romans = ["I", "III", "IV", "VIII", "XLIX", "CCII", "CDXXXIII", "MCMXC", "MMVIII", "MDCLXVI"]
 
fn main() {
for roman in romans {println("${roman:-10} = ${roman_decode(roman)}")}
}
 
fn roman_decode(roman string) int {
mut n := 0
mut last := "O"
if roman =="" {return n}
for c in roman {
match c.ascii_str() {
"I" {n++}
"V" {if last == "I" {n += 3} else {n += 5}}
"X" {if last == "I" {n += 8} else {n += 10}}
"L" {if last == "X" {n += 30} else {n += 50}}
"C" {if last == "X" {n += 80} else {n += 100}}
"D" {if last == "C" {n += 300} else {n += 500}}
"M" {if last == "C" {n += 800} else {n += 1000}}
else {last = c.ascii_str()}
}
}
return n
}
</syntaxhighlight>
 
{{out}}
<pre>
I = 1
III = 3
IV = 4
VIII = 8
XLIX = 49
CCII = 202
CDXXXIII = 433
MCMXC = 1990
MMVIII = 2008
MDCLXVI = 1666
</pre>
 
=={{header|Wren}}==
{{trans|Kotlin}}
{{libheader|Wren-fmt}}
<langsyntaxhighlight ecmascriptlang="wren">import "./fmt" for Fmt
 
var decode = Fn.new { |r|
Line 6,271 ⟶ 7,420:
 
var romans = ["I", "III", "IV", "VIII", "XLIX", "CCII", "CDXXXIII", "MCMXC", "MMVIII", "MDCLXVI"]
for (r in romans) System.print("%(Fmt.s(-10, r)) = %(decode.call(r))")</langsyntaxhighlight>
 
{{out}}
Line 6,289 ⟶ 7,438:
=={{header|XLISP}}==
Uses basic list processing and recursion. Probably not amazingly fast, but quite concise and hopefully clear.
<langsyntaxhighlight lang="lisp">(defun decode (r)
(define roman '((#\m 1000) (#\d 500) (#\c 100) (#\l 50) (#\x 10) (#\v 5) (#\i 1)))
(defun to-arabic (rn rs a)
Line 6,298 ⟶ 7,447:
(+ a (cadar rs)) ) ) )
(t (to-arabic rn (cdr rs) a)) ) )
(to-arabic (string->list r) roman 0) )</langsyntaxhighlight>
Test it in a REPL:
<langsyntaxhighlight lang="lisp">[1] (mapcar decode '("mcmxc" "mmviii" "mdclxvi"))
 
(1990 2008 1666)</langsyntaxhighlight>
 
=={{header|XPL0}}==
<langsyntaxhighlight XPL0lang="xpl0">string 0; \use zero-terminated strings
code CrLf=9, IntOut=11;
 
Line 6,331 ⟶ 7,480:
IntOut(0, Roman("MMVIII")); CrLf(0);
IntOut(0, Roman("MDCLXVI")); CrLf(0);
]</langsyntaxhighlight>
 
{{out}}
Line 6,340 ⟶ 7,489:
</pre>
 
=={{header|YabasicXQuery}}==
<syntaxhighlight lang="xquery">
<lang Yabasic>romans$ = "MDCLXVI"
xquery version "3.1";
decmls$ = "1000,500,100,50,10,5,1"
 
declare function local:decode-roman-numeral($roman-numeral as xs:string) {
sub romanDec(s$)
$roman-numeral
local i, n, prev, res, decmls$(1)
=> upper-case()
n => token(decmls$, decmls$for-each(), ",")
function($roman-numeral-uppercase) {
analyze-string($roman-numeral-uppercase, ".")/fn:match
for i = len(s$) to 1 step -1
! map { "M": 1000, "D": 500, "C": 100, "L": 50, "X": 10, "V": 5, "I": 1 }(.)
n = val(decmls$(instr(romans$, mid$(s$, i, 1))))
if} n < prev n = 0 - n
)
res = res + n
=> fold-right([0,0],
prev = n
function($number as xs:integer, $accumulator as array(*)) {
next i
let $running-total := $accumulator?1
return res
let $previous-number := $accumulator?2
end sub
return
? romanDec("MCMXCIX") //if ($number lt $previous-number) 1999then
? romanDec("MDCLXVI") // 1666 [ $running-total - $number, $number ]
? romanDec("XXV") // 25else
? romanDec("XIX") //[ 19$running-total + $number, $number ]
}
? romanDec("XI") // 11
)
? romanDec("CMLIV") // 954
=> array:get(1)
? romanDec("MMXI") // 2011
};
? romanDec("CD") // 400
 
? romanDec("MCMXC") // 1990
let $roman-numerals :=
? romanDec("MMVIII") // 2008
map {
? romanDec("MMIX") // 2009
"MCMXCIX": 1999,
? romanDec("MDCLXVI") // 1666
"MDCLXVI": 1666,
? romanDec("MMMDCCCLXXXVIII") // 3888</lang>
"XXV": 25,
"XIX": 19,
"XI": 11,
"CMLIV": 954,
"MMXI": 2011,
"CD": 400,
"MCMXC": 1990,
"MMVIII": 2008,
"MMIX": 2009,
"MMMDCCCLXXXVIII": 3888
}
return
map:for-each(
$roman-numerals,
function($roman-numeral, $expected-value) {
local:decode-roman-numeral($roman-numeral) eq $expected-value
}
)
</syntaxhighlight>
 
=={{header|zkl}}==
<langsyntaxhighlight lang="zkl">var romans = L(
L("M", 1000), L("CM", 900), L("D", 500), L("CD", 400), L("C", 100),
L("XC", 90), L("L", 50), L("XL", 40), L("X", 10), L("IX", 9),
Line 6,388 ⟶ 7,556:
}
return(value);
}</langsyntaxhighlight>
<pre>
toArabic("MCMXC") //-->1990
Line 6,398 ⟶ 7,566:
 
=={{header|Zoea}}==
<syntaxhighlight lang="zoea">
<lang Zoea>
program: roman_decimal
input: 'XIII'
output: 13
</syntaxhighlight>
</lang>
 
=={{header|Zoea Visual}}==
[http://zoea.co.uk/examples/zv-rc/Roman_numerals_decode.png Roman numerals decode]
 
=={{header|zsh}}==
<langsyntaxhighlight lang="zsh">
#!/bin/zsh
function parseroman () {
Line 6,426 ⟶ 7,597:
parseroman MMVIII
parseroman MDCLXVI
</syntaxhighlight>
</lang>
1

edit