tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
10
Task/Roman-numerals-Encode/Tcl/roman-numerals-encode.tcl
Normal file
10
Task/Roman-numerals-Encode/Tcl/roman-numerals-encode.tcl
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
proc to_roman {i} {
|
||||
set map {1000 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}
|
||||
foreach {value roman} $map {
|
||||
while {$i >= $value} {
|
||||
append res $roman
|
||||
incr i -$value
|
||||
}
|
||||
}
|
||||
return $res
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue