如何從List
中檢索int
值,它是它的最大數字,但仍小於我比較的X
的值。小於X的列表中的最大值
Value = 10
Example one: List = {1,4,6,8}; => number 8 biggest on list and smaller than 10
Example two: List = {1,15,17,20}; => number 1 biggest on list and smaller than 10
我正在嘗試使用Linq,但目前爲止沒有成功。
找到Max是數組排序就像你的榜樣?如果是這種情況,您可以開始瀏覽列表,並在找到高於您的限制的值時停止。 –