`
jgsj
  • 浏览: 961953 次
文章分类
社区版块
存档分类
最新评论

LeetCode Integer to Roman数字转成罗马数字

 
阅读更多

Given an integer, convert it to a roman numeral.

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

把数字转换成为罗马数字,一般我们都不太熟悉罗马数字,所以只能Wiki一下了:http://en.wikipedia.org/wiki/Roman_numerals

程序是入门级的了:

class Solution {
public:
	string intToRoman(int num) 
	{
		int digits[] = {1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1};
		string symbols[] = {"M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I"};
		string result;
		int i = 0;
		while (num > 0)
		{
			int times = num / digits[i];
			num -= times*digits[i];
			for (int j = 0; j < times; j++)
			{
				result += symbols[i];
			}
			++i;
		}
		return result;
	}
};


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics