//메서드(함수)
using System;
public class 반환값이있는메서드
{
//메서드 선언
public static int 합계(int a, int b)
{
return (a+b);
}
//메서드 참조
public static void Main()
{
int 반환값;
반환값 = 합계(3, 8);
Console.WriteLine("{0}", 반환값);
반환값 = 합계(123, 456);
Console.WriteLine("{0}", 반환값);
}
}