I need to convert Arabic to Roman. I have a method number(int place), that gets each digit from a certain number.

Example: 5821, where the number method at place 0 = 1; number(2) = 8, etc.

I now need to write a method (with a helper), that converts these characters into roman numerals. This wouldn't normally be difficult, but I can't use arrays, and this method has to work for the three cases (1's, 10's, and 100's); so I can't write a case for each numeral (otherwise I could many switch or if's to cover the cases).

Ideas anyone?

link|improve this question
1  
stackoverflow.com/questions/4986521/… may help somewhat. – paxdiablo May 12 '11 at 14:48
1  
I think splitting the number in digits is not really useful here - simply use the modulo operator % to get what is needed. – Paŭlo Ebermann May 12 '11 at 14:49
Yes, using arrays was my first idea, but I can't use them; I'm supposed to get each digit and convert it. – Carlos May 12 '11 at 14:49
@Paul, I think only subtraction and comparison are needed. – Ingo May 12 '11 at 15:00
feedback

2 Answers

Since this is homework, the pseudo code below is deliberately left incomplete.

string toRomanString (int aNumber)
{
  string result = "";
  if (aNumber < 1 || aNumber.toString().length() > 4)
   throw NotImplementedException();

  for(int i=0; i < aNumber.toString().length(); i++)
  {
    if(i = 0)
    {
      throw NotImplementedException();
    }
    elseif(i = 1)
    {
      throw NotImplementedException();
    }
    elseif(i = 2)
    {
      throw NotImplementedException();
    }
    else
    {
      throw NotImplementedException();
    }
  }
}
link|improve this answer
feedback

Maybe instead of thinking about getting a digit, you should think about getting a value. Think of the value you're displaying as a sum of values, each of which can be itself simply expressed in Roman numerals.

convert(5000) + convert(800) + convert(20) + convert(1)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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