Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3. int main()
  4. {
  5. int num, sum = 0;
  6. scanf_s("%d", &num);
  7. while (num != -999)
  8. {
  9. sum += num;
  10. scanf_s("%d", &num);
  11. }
  12. printf("Sum = %d\n", sum);
  13. system("pause");
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement