Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to convert a number from an integer into an another integer which, if printed in hex, would look the same as the original integer.

For example:

Convert 20 to 32 (which is 0x20)

Convert 54 to 84 (which is 0x54)

share|improve this question
one small point - in hexadecimal, you have letters in your numbers, and these cannot be represented in an integer (until after conversion, that is). Do you need to convert a hex string to an int? (e.g. "20" to 32) – jburns20 Feb 17 '12 at 1:14
Is this homework? What have you tried so far? – Ken White Feb 17 '12 at 1:15

5 Answers

up vote 9 down vote accepted
public static int convert(int n) {
  return Integer.valueOf(String.valueOf(n), 16);
}

public static void main(String[] args) {
  System.out.println(convert(20));  // 32
  System.out.println(convert(54));  // 84
}

That is, treat the original number as if it was in hexadecimal, and then convert to decimal.

share|improve this answer

The easiest way is to use Integer.toHexString(int)

share|improve this answer
int orig = 20;
int res = Integer.ParseInt(""+orig, 16);
share|improve this answer
String input = "20";
int output = Integer.parseInt(input, 16); // 32
share|improve this answer

You could try something like this (the way you would do it on paper):

public static int solve(int x){
    int y=0;
    int i=0;

    while (x>0){
        y+=(x%10)*Math.pow(16,i);
        x/=10;
        i++;
    }
    return y;
}

public static void main(String args[]){
    System.out.println(solve(20));
    System.out.println(solve(54));
}

For the examples you have given this would calculate: 0*16^0+2*16^1=32 and 4*16^0+5*16^1=84

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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