반응형 성적표1 [C# 코딩연습] 임의의 성적표. 성적 추출 문제 : 임의의 10인의 성적표를 만들고, 익명 함수, LINQ, Lamda를 이용해서 값을 정렬, 추출한다. using System; using System.Collections.Generic; using System.Linq; namespace LHHCheckPoint05 { class LHStudent { private int id; private int kor; private int eng; private int math; private int total; public LHStudent(int id, int kor, int eng, int math) { this.id = id; this.kor = kor; this.eng = eng; this.math = math; this.total = kor .. 2020. 12. 4. 이전 1 다음 반응형