Advertisement
Spocoman

05. Sum Even Numbers

Jan 20th, 2022
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.29 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace SumEvenNumbers
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int[] num = Console.ReadLine()
  11.                 .Split()
  12.                 .Select(int.Parse)
  13.                 .ToArray();
  14.             int sum = 0;
  15.  
  16.             for (int i = 0; i < num.Length; i++)
  17.             {
  18.                 int current = num [i];
  19.                 if (current % 2 == 0)
  20.                 {
  21.                     sum += current;
  22.                 }
  23.             }
  24.             Console.WriteLine(sum);
  25.         }
  26.     }
  27. }
  28.  
  29.  
  30. Pешение с LINQ:
  31.  
  32. using System;
  33. using System.Linq;
  34.  
  35. namespace SumEvenNumbers
  36. {
  37.     class Program
  38.     {
  39.         static void Main(string[] args)
  40.         {
  41.             int[] num = Console.ReadLine()
  42.                 .Split()
  43.                 .Select(int.Parse)
  44.                 .Where( a => a % 2 == 0)
  45.                 .ToArray();
  46.            
  47.             Console.WriteLine(num.Sum());
  48.         }
  49.     }
  50. }
  51.  
  52.  
  53. ИЛИ :
  54.  
  55. using System;
  56. using System.Linq;
  57.  
  58. namespace SumEvenNumbers
  59. {
  60.     class Program
  61.     {
  62.         static void Main(string[] args)
  63.         {  
  64.             Console.WriteLine(Console.ReadLine().Split().Select(int.Parse).Where(a => a % 2 == 0).Sum());
  65.         }
  66.     }
  67. }
  68.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement