using System;
public class 합계알고리즘
{
public static void Main()
{
int [] 데이터 = new int[5]{33, 23, 22, 69, 88};
//간단
int 합계 = 0;
합계 = 데이터[0] + 데이터[1] + 데이터[2] +
데이터[3] + 데이터[4];
Console.WriteLine("합계 : {0}", 합계);
//중급
합계 = 0;
for(int i = 0; i<데이터.Length; i++)
{
합계 += 데이터[i];
}
Console.WriteLine("합계 : {0}", 합계);
}
}