lunchtime() public method

public lunchtime ( int branch, int rest, int leaf ) : int
branch int
rest int
leaf int
return int
Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Inchworm x = new Inchworm();

            Console.WriteLine(x.lunchtime(11, 2, 4));
            Console.ReadLine();
        }
Exemplo n.º 2
0
 static void Main(string[] args)
 {
     Inchworm x = new Inchworm();
     Console.WriteLine(x.lunchtime(11,2,4));
     Console.ReadLine();
 }