I cannot figure this out. This is for homework. I need to create a method that reverses an integer that is passed to it. I've now been able to fix the outofBounds error in the for loop thanks to everyone's input. The integer that is passed into the method can be of any length. And I have to return an integer instead of an array or string. But now I get an 'Unresolved compilation problem: Syntax error on token "[", Expression expected after this token' on the int u = backInt[]; line. But I have no idea what to put in the []'s. I haven't been able to find a way to convert an Integer array to an integer so I can pass the integer back, so I'm lost. Here is the code that I have so far:
public static int reverseIt(int x){
int y = String.valueOf(x).length();
int[] backInt = new int [y];
for(int z = 0; z < y; z++){
x %=10;
backInt[z] = x;
x /= 10;
}
int u = backInt[];
return u;
return -1;
}
x. You should soon see several problems with your current algorithm. – Rob Kennedy Aug 30 '11 at 0:22