Integer to Roman(JAVA)

时间:2014-10-09 01:25:07   收藏:0   阅读:165
 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     }

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!