(C#) 구조체 struct 예제: 성적 처리
C#에서 구조체의 간단한 예제를 만들었습니다. 이름, 국어점수, 영어점수, 수학점수를 구조체로 묶어서 처리합니다. 석차를 구하기 위해서 총점까지 구조체로 묶었습니다. using System; //using System.Collections.Generic; //using System.Linq; //using System.Text; //using System.Threading.Tasks; namespace 구조체_CS_콘솔_성적 { struct Score { public string name; public int kor, mat, eng; public int tot; public Score(string name, int kor, int mat, int eng) { this.name = name; this.k..