一道面试排序题

题目:写一个方法,要求参数int类型,如:传入一个12345,返回结果54321。


面试的时候遇到这个题,还有个要求,是方法体内的代码不能超过8行,而且还要用递归。

public class Test {
	public static int inverse(int a ){
		
		int x = a % 10;
		if( a / 10 == 0){
			return new Integer(new Integer(x).toString());
		}
		else{
			return new Integer(new Integer(x).toString() + inverse(a/10));
		}
		
		
	}
		
	public static void main(String args[]){
		
		System.out.println( inverse(12345) );
		
	}
}




你可能感兴趣的:(面试)