- Today
- Total
목록> (2)
프로그래밍 농장
- Sum Algorithm (합계 알고리즘) Sym Algorithm은 말 그대로 더하는 알고리즘이다. 아래의 정수형 6칸 배열 scores[] 의 값중, 80이상만 더하라 하였을때, 아래와 같이 구현할수있다. static void Main() { //[1] Input int[] scores = { 100, 75, 50, 37, 90, 95 }; int sum = 0; //[2] Process : 알고리즘 영역 foreach (int a in scores) { if(a >= 80) { sum += a; } } //[3] Output Console.WriteLine($"{scores.Length} 명의 점수 중 80점 이상의 총점 : "+ sum ); } 위와 같이 알고리즘 동작 코드에서는 기본적으로 [..
- Sum Algorithm (합계 알고리즘) Sym Algorithm은 말 그대로 더하는 알고리즘이다. 아래의 정수형 6칸 배열 scores[] 의 값중, 80이상만 더하라 하였을때, 아래와 같이 구현할수있다. static void Main() { //[1] Input int[] scores = { 100, 75, 50, 37, 90, 95 }; int sum = 0; //[2] Process : 알고리즘 영역 foreach (int a in scores) { if(a >= 80) { sum += a; } } //[3] Output Console.WriteLine($"{scores.Length} 명의 점수 중 80점 이상의 총점 : "+ sum ); } 위와 같이 알고리즘 동작 코드에서는 기본적으로 [..