码迷,mamicode.com
首页 > 编程语言 > 详细

Integer to Roman(JAVA)

时间:2014-10-09 01:25:07      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   for   sp   div   c   log   

 1 public String intToRoman(int num) {
 2       int[] values={1000,900,500,400,100,90,50,40,10,9,5,4,1};
 3         String[] roman={"M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"};
 4         String result="";
 5         for(int i=0;i<values.length;i++)
 6         {
 7             while(num-values[i]>=0)
 8             {
 9                 num-=values[i];
10                 result+=roman[i];
11             }
12             
13         }
14         return result;
15     }

 

Integer to Roman(JAVA)

标签:style   blog   color   java   for   sp   div   c   log   

原文地址:http://www.cnblogs.com/sweetculiji/p/4012138.html

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