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.
I need to write a JSP function that will efficiently convert an integer (from 1 - 3000) to a roman numeral.
| |||||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
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. | |||
|
feedback
|
|
Google has quite a few links to both algorithms and code: | |||
|
feedback
|