lunchtime() public method

public lunchtime ( int branch, int rest, int leaf ) : int
branch int
rest int
leaf int
return int
コード例 #1
0
        static void Main(string[] args)
        {
            Inchworm x = new Inchworm();

            Console.WriteLine(x.lunchtime(11, 2, 4));
            Console.ReadLine();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: Oscarbralo/TopBlogCoder
 static void Main(string[] args)
 {
     Inchworm x = new Inchworm();
     Console.WriteLine(x.lunchtime(11,2,4));
     Console.ReadLine();
 }