发布时间:2015-04-01 10:33:26
/Given an integer, convert it to a roman numeral.////Input is guaranteed to be within the range from 1 to 3999.import java.util.HashMap;import java.util.Map;public class IntegertoRoman {public static void main(String[] args) {// TODO 自动生成的方法存根System.out.print(intToRoman(365));}.........【阅读全文】