Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Sum_Numbers
- {
- class Program
- {
- static void Main(string[] args)
- {
- int countNumber = int.Parse(Console.ReadLine());
- double total = 0;
- for (int i=1;i<= countNumber;i++)
- {
- double number = double.Parse(Console.ReadLine());
- total += number;
- }
- Console.WriteLine(total);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment