File size: 227 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
public class Rev{
public static void main(String[] args){
int n = 345;
int temp = n;
int r = 0,s =0;
while(n!=0){
r = n%10;
s = s*10+r;
n =n/10;
}
System.out.println(s);
}
}
|