How do you find a roman numeral equivalent of an integer. Is there a java library which provides this capability?

I did find a similar question, but I would prefer an out of the box API abstraction for this issue. Its just painful to handle all possible combinations in your code.

link|improve this question

3  
There are hundreds of code samples for that on the internet. Why do you ask for that in a forum instead of using google? – codymanix Oct 13 '10 at 8:43
5  
It isn't painful, it is a very good introduction to Test Driven Development. – Thorbjørn Ravn Andersen Oct 13 '10 at 9:07
4  
Code samples, yes. Standard libraries, no. The question is perfectly valid. – Sean Patrick Floyd Oct 13 '10 at 9:09
If you are just looking for a library, then this has nothing to do with math. – aaronasterling Oct 13 '10 at 9:14
I guess nobody bothers to create a library because there are so many code samples. Given the choice between adding another dependency and just copy-pasting some code, most people would probably choose the second. – Arian Oct 13 '10 at 9:25
feedback

2 Answers

up vote 7 down vote accepted

Here is a link for many languages including Java. Here's an extract of relevance:

public class RN {

    enum Numeral {
        I(1), IV(4), V(5), IX(9), X(10), XL(40), L(50), XC(90), C(100), CD(400), D(500), CM(900), M(1000);
        int weigth;

        Numeral(int weigth) {
            this.weigth = weigth;
        }
    };

    public static String roman(long n) {

        if( n <= 0) {
            throw new IllegalArgumentException();
        }

        StringBuilder buf = new StringBuilder();

        final Numeral[] values = Numeral.values();
        for (int i = values.length - 1; i >= 0; i--) {
            while (n >= values[i].weigth) {
                buf.append(values[i]);
                n -= values[i].weigth;
            }
        }
        return buf.toString();
    }

    public static void test(long n) {
        System.out.println(n + " = " + roman(n));
    }

    public static void main(String[] args) {
        test(1999);
        test(25);
        test(944);
        test(0);
    }

}
link|improve this answer
1  
God, this is ugly code. Unfortunately it's probably the most efficient solution (+1). – Sean Patrick Floyd Oct 13 '10 at 8:49
Thats not ugly, was s**t scared, expecting some regex mumbo-jumbo. The problem is with the variable naming! – questzen Oct 13 '10 at 10:41
You can just tell that they only wrote "weigth" because they actually pronounce it "weight'th". I almost don't disapprove. – Jon Purdy Oct 27 '10 at 16:06
feedback

This is the code I am using, right next to the excel column name converter. Why isnt there an apache library for this stuff?

private static final char[] R = {'ↂ', 'ↁ', 'M', 'D', 'C', 'L', 'X', 'V', 'I'};
// or, as suggested by Andrei Fierbinteanu
// private static final String[] R = {"X\u0305", "V\u0305", "M", "D", "C", "L", "X", "V", "I"};
private static final int MAX = 10000; // value of R[0], must be a power of 10

private static final int[][] DIGITS = {
    {},{0},{0,0},{0,0,0},{0,1},{1},
    {1,0},{1,0,0},{1,0,0,0},{0,2}};

public static String int2roman(int number) {
    if (number < 0 || number >= MAX*4) throw new IllegalArgumentException(
            "int2roman: " + number + " is not between 0 and " + (MAX*4-1));
    if (number == 0) return "N";
    StringBuilder sb = new StringBuilder();
    int i = 0, m = MAX;
    while (number > 0) {
        int[] d = DIGITS[number / m];
        for (int n: d) sb.append(R[i-n]);
        number %= m;
        m /= 10;
        i += 2;
    }
    return sb.toString();
}

Edit:

Now that I look at it again, the loop can be condensed to

    for (int i = 0, m = MAX; m > 0; m /= 10, i += 2) {
        int[] d = DIGITS[(number/m)%10];
        for (int n: d) sb.append(R[i-n]);
    }

making the code even less readable ;-)

link|improve this answer
I like this code (+1), but I'd return null for n < 0 and throw an IllegalArgumentException for too large numbers – Sean Patrick Floyd Oct 13 '10 at 9:08
Yes, that would be more correct. I just pasted it for the algorithm. – Arian Oct 13 '10 at 9:11
+1 Very nice and compact! – Andrei Fierbinteanu Oct 13 '10 at 9:14
Also, I think you should probably use "V\u0305" (V with upper bar) for 5000 and "X\u0305" (X with upper bar) for 10000. – Andrei Fierbinteanu Oct 13 '10 at 9:35
I added it to the example – Arian Oct 13 '10 at 9:49
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.