Advertisement
Spocoman

07. Order By Age

Apr 4th, 2023 (edited)
1,150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.40 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace OrderByAge
  6. {
  7.     class Person
  8.     {
  9.         public Person(string name, string id, int age)
  10.         {
  11.             this.Name = name;
  12.             this.ID = id;
  13.             this.Age = age;
  14.         }
  15.  
  16.         public string Name { get; set; }
  17.         public string ID { get; set; }
  18.  
  19.         public int Age { get; set; }
  20.  
  21.     }
  22.  
  23.     class Program
  24.     {
  25.         public static void Main()
  26.         {
  27.             List<Person> people = new List<Person>();
  28.  
  29.             string command;
  30.  
  31.             while ((command = Console.ReadLine()) != "End")
  32.             {
  33.                 string[] personInfo = command.Split(" ");
  34.                 string name = personInfo[0];
  35.                 string id = personInfo[1];
  36.                 int age = int.Parse(personInfo[2]);
  37.  
  38.                 int idIndex = people.FindIndex(x => x.ID == id);
  39.  
  40.                 if (idIndex == -1)
  41.                 {
  42.                     people.Add(new Person(name, id, age));
  43.                 }
  44.                 else
  45.                 {
  46.                     people[idIndex].Name = name;
  47.                     people[idIndex].Age = age;
  48.                 }
  49.             }
  50.  
  51.             foreach (var p in people.OrderBy(x => x.Age))
  52.             {
  53.                 Console.WriteLine($"{p.Name} with ID: {p.ID} is {p.Age} years old.");
  54.             }
  55.         }
  56.     }
  57. }
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement