2015년 9월 28일 월요일

[params 매개변수를 이용하여 N개의 수를 입력받아 합을 구하는 메소드를 작성하거 메인에서 테스트 하세요]

[params 매개변수를 이용하여 N개의 수를 입력받아 합을 구하는 메소드를 작성하거 메인에서 테스트 하세요]

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(Sum(1, 2));
            Console.WriteLine(Sum(1, 2, 3));
            Console.WriteLine(Sum(1, 2, 3, 4));
        }

        static int Sum(params int[] iArray)
        {
            int total = 0;
            foreach (int i in iArray)
            {
                total += i;
            }
            return total;
        }
      
    }
}

댓글 없음:

댓글 쓰기