数字到罗马数字


罗马数字是非位置制数字。一些数字组合在一起形成罗马数字中的数字。例如,数字 75 可以表示为 75 = 50 + 10 + 10 + 5,因此罗马数字是 LXXV。

在此问题中,以十进制格式提供一个数字,我们的任务是将其转换为罗马数字字符串。

有不同的符号及其值,如下所示。

I
IV
V
IX
X
XL
L
XC
C
CD
D
CM
M
MMMM
V’
1
4
5
9
10
40
50
90
100
400
500
900
1000
4000
5000


使用此表格,我们可以轻松找到给定数字的罗马数字。

输入和输出

Input:
Decimal number: 3569
Output:
The Roman equivalent of 3569 is: MMMDLXIX

算法

decToRoman(nuList, num)

输入:带有其值的数字列表,将其转换为罗马数字。

输出:给定数字的罗马数字。

Begin
   if num ≠ 0, then
      max := get maximum numeral value, not greater than number
      display the nuList[max].symbol
      num := num – nuList[max].value
      decToRoman(nuList, num)
End

示例

#include<iostream>
using namespace std;

struct numeral {
   string sym;
   int val;
};

int maxNume(numeral nu[], int num) {
   int index;
   for(int i = 0; i<15; i++)   //15 numerals in array
      if(nu[i].val<= num)
         index = i;
   //gretest value numeral index, not greater than number
   return index;
}

void decToRoman(numeral nu[], int num) {
   int max;
   if(num != 0) {
      max = maxNume(nu, num);
      cout << nu[max].sym;
      num -= nu[max].val;   //decrease number
      decToRoman(nu, num);   //recursively print numerals
   }
}

int main() {
   int number;
   numeral nume[15] = {{"I",1},{"IV",4},{"V",5},{"IX",9},
      {"X",10},{"XL",40},{"L",50},{"XC",90},
      {"C",100},{"CD",400},{"D",500},{"CM",900},
      {"M",1000},{"MMMM",4000},{"V'",5000}
   };
   cout << "Enter a decimal number: "; cin >> number;

   if(number >0 && number <= 5000) {   //checking input number
      cout<<"The Roman equivalent of " << number<<" is: ";
         decToRoman(nume, number);
   }else {
      cout << "Invalid Input";
   }
}

输出

Enter a decimal number: 3569
The Roman equivalent of 3569 is: MMMDLXIX

更新于:17-Jun-2020

1 千次观看

开启您的职业生涯

完成本课程认证

开始
广告