You are viewing a single comment's thread. Return to all comments →
#include<stdio.h> int main() { int n; scanf("%d", &n); int sum_of_digits = 0; while(n > 0) { sum_of_digits += n % 10; n = n/10; } printf("%d\n", sum_of_digits); 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 →
For C