Advertisement
18126

TestNo1Ex1

Mar 23rd, 2022
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.36 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <math.h>
  5.  
  6. int main() {
  7.     int num;
  8.     int sum = 0;
  9.     int temp = 0;
  10.     while(scanf("%d", &num) != EOF) {
  11.         while(num != 0) {
  12.             temp = num%10;
  13.             sum += temp;
  14.             num = num/10;
  15.         }
  16.     }
  17.     printf("Sum: %d\n", sum);
  18.     return 0;
  19. }
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement