JulianJulianov

SumDigits

Jan 29th, 2020
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _02SumDigits
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. var input = int.Parse(Console.ReadLine());
  10.  
  11. int n = 1;
  12. double sum = 0;
  13. while (n > 0)
  14. {
  15. n = input;
  16. sum += n % 10;
  17. n /= 10;
  18. input = n;
  19. }
  20. Console.WriteLine(sum);
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment