Advertisement
silvana1303

sum even numbers / lists

Jun 2nd, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. using System.Numerics;
  5. using System.Text;
  6.  
  7. namespace exampreparation
  8. {
  9.     class exam
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             List<int> letters = Console.ReadLine().Split().Select(int.Parse).ToList();
  14.  
  15.             letters.RemoveAll(n => n % 2 == 1);
  16.  
  17.             Console.WriteLine(letters.Sum());
  18.  
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement