Advertisement
myloyo

15.2.15

Dec 1st, 2023 (edited)
696
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.32 KB | None | 0 0
  1. using System;
  2. using System.IO;
  3. using System.Linq;
  4.  
  5. namespace myloyorrr
  6. {
  7.     class Program
  8.     {
  9.         struct Depositors
  10.         {
  11.             public string Surname, Name, SecName;
  12.             public int Number, Amount, Year;
  13.             public Depositors(string Surname, string Name, string SecName, int Number, int Amount, int Year)
  14.             {
  15.                 this.Name = Name;
  16.                 this.Surname = Surname;
  17.                 this.SecName = SecName;
  18.                 this.Number = Number;
  19.                 this.Amount = Amount;
  20.                 this.Year = Year;
  21.             }
  22.  
  23.         }
  24.         static void Main()
  25.         {
  26.             using (StreamReader sr = new StreamReader("C:/Настя/книит/in.txt"))
  27.             {
  28.                 using (StreamWriter sw = new StreamWriter("C:/Настя/книит/out.txt"))
  29.                 {
  30.                     int n = int.Parse(sr.ReadLine());
  31.                     Depositors[] array = new Depositors[n];
  32.                     for (int i = 0; i < n; i++)
  33.                     {
  34.                         string[] text = sr.ReadLine().Split(' ');
  35.                         array[i] = new Depositors(text[0], text[1], text[2], int.Parse(text[3]), int.Parse(text[4]), int.Parse(text[5]));
  36.                     }
  37.                     int year = int.Parse(sr.ReadLine());
  38.  
  39.                     var depos =
  40.                         from x in array
  41.                         where x.Year == year
  42.                         orderby x.Amount
  43.                         select x;
  44.                     foreach (var x in depos)
  45.                     {
  46.                        
  47.                         sw.WriteLine("{0} {1} {2}, {3}, {4}, {5}", x.Surname, x.Name, x.SecName, x.Number, x.Amount, x.Year);
  48.                        
  49.  
  50.                     }
  51.                 }
  52.             }
  53.  
  54.         }
  55.     }
  56. }
  57. 7
  58. Мыльникова Анастасия Сергеевна 8 88888 2023
  59. Уталиев Султан Едильбаевич 17 100000 2021
  60. Стародубцев Иван Денисович 16 777777 2020
  61. Алексеева Ксения Михайловна 13 55555 2023
  62. Ложкова Александра Геннадьевна 9 99999 2023
  63. Шилина Ангелина Артуровна 10 99999 2023
  64. Певнева Валерия Александровна 11 90000 2023
  65. 2023
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement