Вход на сайт
Собрать список?
1052 просмотров
Перейти к просмотру всей ветки
в ответ Murr 23.06.19 14:17
Может строку кода?
одну - нету
int[] grades = { 59, 82, 70, 56, 92, 98, 85 }; IEnumerable<int> topThreeGrades = grades.OrderByDescending(grade => grade).Take(3); Console.WriteLine("The top three grades are:"); foreach (int grade in topThreeGrades) { Console.WriteLine(grade); } /* This code produces the following output: The top three grades are: 98 92 85 */