Is my code is correct or not

import java.util.Scanner;

public class reversenumber {

public static void main(String[] args) {
Scanner scn = new Scanner(System.in);
int a = scn.nextInt();
while (a /10 != 0) {
	int r = a%10;
	System.out.println(r);
	int s = a /10;
	a=s;
}

System.out.println(a);
}

}

hey @sridharcr134_2b1a136f5849e691 Tell me your problem?

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.