码迷,mamicode.com
首页 > 其他好文 > 详细

Integer to Roman

时间:2015-01-29 15:55:56      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

Given an integer, convert it to a roman numeral.

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


string intToRoman(int num) {
    int numarr[] = {1, 4, 5, 9, 10, 40, 50, 90, 100, 400, 500, 900, 1000};
    string strarr[] = {"I", "IV", "V", "IX", "X", "XL", "L", "XC", "C", "CD", "D", "CM", "M"};
    string roman;
    int i;
    for(i = 12; i >= 0; i--) {
        while(numarr[i] <= num ) {
            roman.append(strarr[i]);
            num = num - numarr[i];
        }
    }
    return roman;
}


Integer to Roman

标签:

原文地址:http://blog.csdn.net/uj_mosquito/article/details/43272043

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!