using System;

public class 합계
{
    public static void Main()
    {
        //[1] Input : n명의 국어 점수로 가정
        int[] score = {100, 75, 50, 37, 90, 95};
        int sum = 0;
        //[2] Process : SUM ==> 주어진 범위에 주어진 조건을 만족해야 함.
        for (int i = 0; i <score.Length; i++)  // 0번째 ~ n-1번째      
        {
            if (score[i] >= 80)
            {
                sum += score[i]; // SUM
            }
        }
        //[3] Output
        Console.WriteLine("{0}명의 점수 중 80점 이상의 총점 : {1}", score.Length, sum); //  총점 : 285
    }
}

'.NET프로그래밍 > C# 3.5 SP1' 카테고리의 다른 글

알고리즘 - 3. 평균(AVG)  (0) 2009.08.05
알고리즘 - 2. 카운트(COUNT)  (0) 2009.08.05
16. 1차원배열  (0) 2009.08.05
15. 컬렉션반복(foreach문 사용)  (0) 2009.08.05
C# 언어 사양  (0) 2009.08.05
Posted by holland14
: