public static void main(String args[]){
int num = Integer.parseInt(args[0]);
int remainder, result=0;
while(num>0){
remainder = num%10;
result = result * 10 + remainder;
num = num/10;
}
System.out.println("Reverse number is : "+result);
}
}
1 comments:
I did not get the logic.. can u explain it pls??
Post a Comment