You are viewing a single comment's thread. Return to all comments →
\ while(n>0){ int a = n%10; sum=sum+a; n=n/10; } use while loop
Seems like cookies are disabled on this browser, please enable them to open this website
Sum of Digits of a Five Digit Number
You are viewing a single comment's thread. Return to all comments →
\ while(n>0){ int a = n%10; sum=sum+a; n=n/10; } use while loop