[Leetcode] [JavaScript] Integer to Roman

Source: Internet
Author: User

Integer to Roman

Given an integer, convert it to a Roman numeral.

Input is guaranteed to being within the range from 1 to 3999.

https://leetcode.com/problems/integer-to-roman/

Arabic numerals turn to Roman numerals.

watchmaking, the base is placed in the table, the main is to put iv,ix this kind of number, easy to deal with.

From large to small match the number in the table, a round loop is done.

1 /**2 * @param {number} num3 * @return {string}4  */5 varInttoroman =function(num) {6     varNumber = [1, 4, 5, 9, 10, 40, 50, 90, 100, 400, 500, 900, 1000];7     varRoman = ["I", "IV", "V", "IX", "X", "XL", "L", "XC", "C", "CD", "D", "CM", "M"];8     varTMP, index = a, res = ""; 9      while(Index >= 0){Ten         if(Number[index] >num) { Oneindex--; A             Continue; -         } -          while(Num >=Number[index]) { thenum-=Number[index]; -Res + =Roman[index]; -         } -index--; +     } -     returnRes; +};

[Leetcode] [JavaScript] Integer to Roman

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.