Q&A Discussões
Class competition
0 Voto
4 RespostasCan someone explain this code to me....
class ReverseNumberDemo
{ public static void main(String args[]) {
int num=123456789;
int reversenum =0;
while( num != 0 ) {
reversenum = reversenum * 10;
reversenum = reversenum + num%10;
num = num/10; }
System.out.println("Reverse of specified number is: "+reversenum);
}
}
the thing I don't get is the reversenum part......isn't reversenum=0 so wouldn't reversenum*10=0
0 Voto
8 RespostasQuente hoje
Is there any free coding app?
1 Votes
Not getting Badge issue
1 Votes
Slicing in py
0 Votes
Notes app bug
1 Votes
Cube Roots
1 Votes
Association rule mining
1 Votes
BASIC
0 Votes
how to become a mentor
2 Votes