Advertisement
Infiniti_Inter

sample

Dec 1st, 2019
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.18 KB | None | 0 0
  1. using System;
  2. using System.IO;
  3. using System.Linq;
  4. using System.Collections.Generic;
  5. using System.Text;
  6.  
  7. namespace ConsoleApp1
  8. {
  9.  
  10.     class Input
  11.     {
  12.         private static IEnumerator<string> getin()
  13.         {
  14.             while (true)
  15.                 foreach (string s in Console.ReadLine().Split().Where(x => x.Length > 0))
  16.                     yield return s;
  17.         }
  18.  
  19.         private IEnumerator<string> inp = getin();
  20.         public string GetString() { inp.MoveNext(); return inp.Current; }
  21.         public int GetInt() { return int.Parse(GetString()); }
  22.     }
  23.     class Program
  24.     {
  25.  
  26.  
  27.         static void Main()
  28.         {
  29.             Input cin = new Input();
  30.             //int k = cin.GetInt();
  31.  
  32.            
  33.  
  34.             int[] a = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
  35.  
  36.  
  37.             int d = 0;
  38.             for (int i = 0; i < a.Length; ++i)
  39.             {
  40.                 if (a[i] % 2 == 0)
  41.                     d += a[i] * a[i];
  42.             }
  43.             Console.WriteLine("First case " + d);
  44.  
  45.  
  46.             int b = a.Where(x => x % 2 == 0).Select(x => x * x).Aggregate((x, y) => x + y);
  47.             Console.WriteLine("Second case " + b);
  48.  
  49.  
  50.         }
  51.     }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement