Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int count = int.Parse(Console.ReadLine());
- int sum = 0;
- for (int i = 0; i < count; i++)
- {
- int character = char.Parse(Console.ReadLine());
- sum += character;
- }
- Console.WriteLine($"The sum equals: {sum}");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement