Advertisement
elena1234

OddLines- with stream

Jan 14th, 2021
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.72 KB | None | 0 0
  1. using System;
  2. using System.IO;
  3.  
  4. namespace OddLines
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             using (var reader = new StreamReader("input.txt"))
  11.             {
  12.                 using (var writer = new StreamWriter("output.txt"))
  13.                 {
  14.                     int counter = 0;
  15.                     while (!reader.EndOfStream)
  16.                     {
  17.                         var line = reader.ReadLine();
  18.                         if (counter % 2 == 1)
  19.                         {
  20.                             writer.WriteLine(line);
  21.                         }
  22.  
  23.                         counter++;
  24.                     }
  25.                 }
  26.             }
  27.         }
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement