You are viewing a single comment's thread. Return to all comments →
int main() { int n, res=0; scanf("%d", &n); for(int i=0; i<5; i++) { res+=n%10; n/=10; } printf("%d\n", res); return 0; }
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 →
int main() { int n, res=0; scanf("%d", &n); for(int i=0; i<5; i++) { res+=n%10; n/=10; } printf("%d\n", res); return 0; }