Give the output of the
following code snippet: [
s=0,num=0,r; while(n!=0)
{
r=n%10;
num=num*10+r;
System.out.print(r); s=s+r
n=n/10;
}
System.out.println(“/nSum =”+s);
System.out.print(“Number =”+num);
Answers
Answered by
0
Answer:
sysytm sodh Sodhi sodiii
Similar questions