About 112,000 results
Open links in new tab
  1. Converting Roman Numerals to integers in python

    Oct 11, 2013 · n=roman.fromRoman("X"); #n becomes 10 If you need it for numbers 5000 and above, you'll need to write a new function, though, and maybe make your own font to represent the lines …

  2. Convert a number into a Roman numeral in JavaScript

    17 These functions convert any positive whole number to its equivalent Roman Numeral string; and any Roman Numeral to its number. Number to Roman Numeral:

  3. c# - Roman numerals to integers - Stack Overflow

    Convert Roman Numerals by Recursion The algorithm is able to handle numerals in irregular subtractive notation (f.e. XIIX). This implementation may only work with well-formed (strings matching …

  4. Converting Integers to Roman Numerals - Java - Stack Overflow

    Oct 19, 2012 · I think if you study the theory of roman numerals carefully you don't require mappings for numbers 4,9,40 etc because the theory tells us if the roman numeral is IV = 5-1 = 4, hence when the …

  5. c++ Converting roman numerals to decimals - Stack Overflow

    Apr 12, 2015 · This helper function will return the numeric value of each of the letters used in Roman numerals. Then, convert the string arguments as so: Look at the first two characters, if the first is …

  6. c# - Converting integers to roman numerals - Stack Overflow

    Aug 12, 2011 · I'm trying to write a function that converts numbers to roman numerals. This is my code so far; however, it only works with numbers that are less than 400. Is there a quick and easy way to …

  7. Basic program to convert integer to Roman numerals?

    Feb 28, 2015 · Convert your selected magic digit string into a string of roman numeral "digits". Basically, you now have your decimal digit expressed as roman numeral digits appropriate to the original 10's …

  8. java - Converting Roman Numerals To Decimal - Stack Overflow

    Jan 31, 2012 · I used this very compact code converted to JavaScript in an UltraEdit script to convert Roman numerals to Arabic decimal integers.

  9. Converting integers to their roman numeral equivalents

    Jul 17, 2021 · Given this chart: I want to convert integers into their respected Roman letters. For example, let's say we have a list of integers like: [1, 49, 23]. The method should return something like …

  10. Oracle SQL - TO_NUMBER RN Format_model - Stack Overflow

    Nov 2, 2022 · I want to convert some Roman numerals into numbers. There are some quite complex methods, but I wonder whether it's possible to use TO_NUMBER fuction. There's a 'RN' format, it …