111,098
社区成员




using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication6
{
class Program
{
static int hello(int d,int e)
{
int c = d * e;
return c;
}
static void Main(string[] args)
{
Console.WriteLine("result is : " + hello (2,3) );
}
}
}