Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace SumDigits
- {
- class Program
- {
- static void Main(string[] args)
- {
- int num = int.Parse(Console.ReadLine());
- int currentDigit = num;
- int sum = 0;
- for (int i = 0; i < num.ToString().Length; i++)
- {
- sum += currentDigit % 10;
- currentDigit /= 10;
- }
- Console.WriteLine(sum);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement