Advertisement
Sephinroth

prac 15 ex 1

Dec 8th, 2019
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.21 KB | None | 0 0
  1. //Вывести на экран все числа, попадающий в отрезок [a, b], отсортировав их в порядке возрастания.
  2.  
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.IO;
  8.  
  9. namespace ConsoleApplication2
  10. {
  11.     class Program
  12.     {
  13.         static void Main(string[] args)
  14.         {
  15.             using (StreamReader input = new StreamReader("e:/practice/input.txt", Encoding.GetEncoding(1251)))
  16.             {
  17.                 int n = int.Parse(input.ReadLine());
  18.                 int [] array = new int[n];
  19.                 string[] text = input.ReadLine().Split(' ');
  20.                 int a = int.Parse(text[0]);
  21.                 int b = int.Parse(text[1]);
  22.                 string[] tmp = input.ReadLine().Split(' ');
  23.                 for (int i = 0; i < n; i++)
  24.                     array[i] = int.Parse(tmp[i]);
  25.                
  26.                 var Nums =
  27.                     from x in array
  28.                     where x >= a && x <= b
  29.                     orderby x
  30.                     select x;                  
  31.                 using (StreamWriter output = new StreamWriter("e:/practice/output.txt", false))
  32.                 {
  33.                     foreach (var x in Nums)
  34.                         output.WriteLine("{0} ", x);
  35.                 }
  36.             }
  37.                
  38.         }
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement