fork download
  1. import java.util.*;
  2.  
  3.  
  4. /* Name of the class has to be "Main" only if the class is public. */
  5. class Ideone
  6. {
  7. public static void main (String[] args)
  8. {
  9. Scanner sc=new Scanner(System.in);
  10. int u,o,t;
  11. double v;
  12. System.out.println("Enter the the no");
  13. u=sc.nextInt();
  14. o=u%10;
  15. t=u/10;
  16. v=o*10+t;
  17. System.out.println("the no in revcerse="+v);
  18. }}
  19.  
  20.  
  21.  
  22.  
Success #stdin #stdout 0.19s 60816KB
stdin
54
stdout
Enter the the no
the no in revcerse=45.0