Advertisement
myloyo

16.1.15

Dec 1st, 2023
827
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.08 KB | None | 0 0
  1. using System;
  2. using System.IO;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Security.Cryptography.X509Certificates;
  6.  
  7. namespace myloyorrr
  8. {
  9.     class Program
  10.     {
  11.         static void Main()
  12.         {
  13.             using (StreamReader sr = new StreamReader("C:/Настя/книит/in.txt"))
  14.             {
  15.                 using (StreamWriter sw = new StreamWriter("C:/Настя/книит/out.txt"))
  16.                 {
  17.                     int[] number;
  18.                     int n = int.Parse(sr.ReadLine());
  19.                     string[] text = sr.ReadLine().Split(' ');
  20.                     number = new int[n];
  21.                    
  22.                     for (int i = 0; i < n; i++)
  23.                     {
  24.                         number[i] = int.Parse(text[i]);
  25.                     }
  26.  
  27.                     var Nums = number.Where(x => x > 10 && x < 100).Select(x => x + 1);
  28.                     foreach (var x in Nums)
  29.                     {
  30.                         sw.WriteLine(x);
  31.                     }
  32.  
  33.                 }
  34.             }
  35.  
  36.         }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement