将数字转换为罗马数字?
可能的重复:
如何找到与整数
我需要编写一个 JSP 函数,它将有效地将整数(从 1 - 3000)转换为罗马数字。
Possible Duplicate:
How do you find a roman numeral equivalent of an integer
I need to write a JSP function that will efficiently convert an integer (from 1 - 3000) to a roman numeral.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从简单开始。弄清楚如何将数字 1 - 9 转换为罗马数字。编码和测试。当它正常工作时,将其扩展为处理最多 99 的数字。再次编码和测试。当它正常工作时,将其扩展到处理最多 999 个数字。编码、测试并扩展到最多 3,000 个。
Start simple. Work out how you would convert the numbers 1 - 9 into Roman. Code and test. When it is working correctly, extend it to handle numbers up to 99. Again code and test. When it is working correctly, extend it to handle numbers up to 999. Code, test and extend up to 3,000.
Google 有很多算法和代码的链接:
http://www.google.com/webhp?hl=&sourceid=navclient-ff&rlz=1B3GGLL_enUS384US384&ie=UTF-8#hl=en&am p;sugexp=gsis%2Ci18n%3Dtrue&cp=34&gs_id=3&xhr=t&q=十进制+to+罗马+数字+算法&pf=p&sclient=p sy-ab&rlz=1B3GGLL_enUS384US384&site=webhp&source=hp&pbx=1&oq=十进制+to+罗马+数字+算法&aq= 0&aqi=g1&aql=&gs_sm=&gs_upl=&bav=on.2,or.r_gc.r_pw.&fp=d5bc1e92224c5138&biw=1003&bih=594
Google has quite a few links to both algorithms and code:
http://www.google.com/webhp?hl=&sourceid=navclient-ff&rlz=1B3GGLL_enUS384US384&ie=UTF-8#hl=en&sugexp=gsis%2Ci18n%3Dtrue&cp=34&gs_id=3&xhr=t&q=decimal+to+roman+numeral+algorithm&pf=p&sclient=psy-ab&rlz=1B3GGLL_enUS384US384&site=webhp&source=hp&pbx=1&oq=decimal+to+roman+numeral+algorithm&aq=0&aqi=g1&aql=&gs_sm=&gs_upl=&bav=on.2,or.r_gc.r_pw.&fp=d5bc1e92224c5138&biw=1003&bih=594