Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ExactSumOfRealNumbers
- {
- class Program
- {
- static void Main()
- {
- int n = int.Parse(Console.ReadLine());
- decimal sum = 0;
- for (int i = 0; i < n; i++)
- {
- decimal num = decimal.Parse(Console.ReadLine());
- sum += num;
- }
- Console.WriteLine(sum);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement