RomanNumeral

RomanNumeral[n]

给出与整数 n 相对应的罗马数字形式的字符串.

更多信息

  • 罗马数字是由字母I、V、 X、 L、 C、 D 和 M 的组合构成的.
  • 数字0表示为数字 "N",nulla 的首字母.
  • 对于一个负整数 nRomanNumeral[n] 产生的结果对应于 n 的绝对值.
  • 对于大于4999的数字,结果中将会在字符上加入上划线.

范例

打开所有单元关闭所有单元

基本范例  (2)

与数字 2023 相对应的罗马数字:

将一组整数转换成罗马数字:

范围  (5)

罗马数字由字母 I、V、 X、 L、 C、 D 和 M 的组合构成:

整数0表示为数字"N". 其他的罗马数字都不包含字母 N:

从5000开始,开始在整数上加上上划线:

每1000倍加一个上划线:

忽略正负号:

RomanNumeral 自动逐个作用于列表中的整数:

属性和关系  (4)

RomanNumeral 返回大写形式的字符串. 用 ToLowerCase 来转换成小写形式:

如下为可能的重复及它们在前4999个罗马数字中出现的次数:

FromRomanNumeral 将罗马数字转换成十进制的整数形式:

RomanNumeral[n] 等价于 IntegerString[n,"Roman"]

Wolfram Research (2015),RomanNumeral,Wolfram 语言函数,https://reference.wolfram.com/language/ref/RomanNumeral.html.

文本

Wolfram Research (2015),RomanNumeral,Wolfram 语言函数,https://reference.wolfram.com/language/ref/RomanNumeral.html.

CMS

Wolfram 语言. 2015. "RomanNumeral." Wolfram 语言与系统参考资料中心. Wolfram Research. https://reference.wolfram.com/language/ref/RomanNumeral.html.

APA

Wolfram 语言. (2015). RomanNumeral. Wolfram 语言与系统参考资料中心. 追溯自 https://reference.wolfram.com/language/ref/RomanNumeral.html 年

BibTeX

@misc{reference.wolfram_2024_romannumeral, author="Wolfram Research", title="{RomanNumeral}", year="2015", howpublished="\url{https://reference.wolfram.com/language/ref/RomanNumeral.html}", note=[Accessed: 17-November-2024 ]}

BibLaTeX

@online{reference.wolfram_2024_romannumeral, organization={Wolfram Research}, title={RomanNumeral}, year={2015}, url={https://reference.wolfram.com/language/ref/RomanNumeral.html}, note=[Accessed: 17-November-2024 ]}