翻译给定一个罗马数字,将其转换到整型数值。输入被保证在 1 到 3999 之间。原文Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.一开始就没有构思好,虽然按上一题的套路可以走下去,但结果就是像我下面这样……代码凌乱……
翻译给定一个整型数值,将其转换到罗马数字。输入被保证在 1 到 3999 之间。原文Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.我不会告诉你一开始我是用的无数个变量和 if……后来实在受不了这么多变量就将其写成了枚举,那么接下来就迎刃而解了。