Advertisement
Infiniti_Inter

322

Nov 2nd, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.42 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Text.RegularExpressions;
  7. using System.IO;
  8.  
  9. namespace ConsoleApp1
  10. {
  11.     class Program
  12.     {
  13.         static void Main()
  14.         {
  15.             using (StreamReader file1 = new StreamReader("d:/input1.txt", Encoding.GetEncoding(1251)))
  16.             {
  17.                 using (StreamReader file2 = new StreamReader("d:/input2.txt", Encoding.GetEncoding(1251)))
  18.                 {
  19.                     using (StreamWriter output = new StreamWriter("d:/output.txt", false))
  20.                     {
  21.                         string s;
  22.                         while ((s = file1.ReadLine()) != null)
  23.                         {
  24.                             string[] line = s.Split();
  25.                             foreach (string v in line)
  26.  
  27.                                 if (Int32.Parse(v) % 2 == 0)
  28.                                     output.Write(v + " ");
  29.  
  30.                         }
  31.                         while ((s = file2.ReadLine()) != null)
  32.                         {
  33.                             string[] line = s.Split();
  34.                             foreach (string v in line)
  35.                                 if (Int32.Parse(v) % 2 != 0)
  36.                                     output.Write(v + " ");
  37.                         }
  38.                     }
  39.                 }
  40.             }
  41.         }
  42.     }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement