Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

โปรแกรม C# เพื่อรับองค์ประกอบที่เล็กที่สุดและใหญ่ที่สุดจากรายการ


ตั้งค่ารายการ

List<long> list = new List<long> { 150, 300, 400, 350, 450, 550, 600 };

เพื่อให้ได้องค์ประกอบที่เล็กที่สุด ให้ใช้วิธี Min()

list.AsQueryable().Min();

เพื่อให้ได้องค์ประกอบที่ใหญ่ที่สุด ให้ใช้วิธี Max()

list.AsQueryable().Max();

ให้เราดูรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;
class Demo {
   static void Main() {
      List<long> list = new List<long> { 150, 300, 400, 350, 450, 550, 600 };
      foreach(long ele in list){
         Console.WriteLine(ele);
      }

      // getting largest element
      long max_num = list.AsQueryable().Max();

      // getting smallest element
      long min_num = list.AsQueryable().Min();

      Console.WriteLine("Smallest number = {0}", min_num);
      Console.WriteLine("Largest number = {0}", max_num);
   }
}

ผลลัพธ์

150
300
400
350
450
550
600
Smallest number = 150
Largest number = 600