Roman Numeral Converter-freecodecamp算法题目

Posted ahswch

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Roman Numeral Converter-freecodecamp算法题目相关的知识,希望对你有一定的参考价值。

Roman Numeral Converter


1.要求

  • 将给定的数字转换成罗马数字
  • 所有返回的罗马数字都应该是大写形式

2.思路

  • 分别定义个位、十位、百位、千位的对应罗马数字的数组
  • 用Math.floor()取出数字的各个位上的数字,在之前定义的数组找到对应罗马数字加在一起即可

3.代码

function convert(num) {
var arr1 = [‘‘,‘I‘,‘II‘,‘III‘,‘IV‘,‘V‘,‘VI‘,‘VII‘,‘VIII‘,‘IX‘];
var arr10 = [‘‘,‘X‘,‘XX‘,‘XXX‘,‘XL‘,‘L‘,‘LX‘,‘LXX‘,‘LXXX‘,‘XC‘];
var arr100 = [‘‘,‘C‘,‘CC‘,‘CCC‘,‘CD‘,‘D‘,‘DC‘,‘DCC‘,‘DCCC‘,‘CM‘];
var arr1000 = [‘‘,‘M‘,‘MM‘,‘MMM‘];
num = arr1000[Math.floor(num/1000)]+arr100[Math.floor(num%1000/100)]+arr10[Math.floor(num%100/10)]+arr1[Math.floor(num%10)];
return num;
}
convert(36);

4.相关链接

以上是关于Roman Numeral Converter-freecodecamp算法题目的主要内容,如果未能解决你的问题,请参考以下文章

Roman Numeral Converter

Roman Numeral Converter-freecodecamp算法题目

FCC_Intermediate Algorithm Scripting_Roman Numeral Converter

12. Integer to Roman 整数转罗马数字

JS数组排序,有些位置不懂,帮忙注释哈。为啥从小到大排序?

CF J. Superfactorial numeral system 我知道你数学不好...