Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- namespace ConsoleTests
- {
- class ConsoleTests
- {
- static void Main()
- {
- Console.Write("Enter numbers (separated by space): ");
- string input = Console.ReadLine();
- string[] nums = input.Split(' ').ToArray();
- int[] numbers = new int[nums.Length];
- for (int i = 0; i < numbers.Length; i++)
- {
- numbers[i] = Convert.ToInt32(nums[i]);
- }
- Console.WriteLine("Sum = {0}",numbers.Sum());
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment