howMany() public method

public howMany ( int maxAdd, int goal, int next ) : int
maxAdd int
goal int
next int
return int
Exemplo n.º 1
0
        static void Main(string[] args)
        {
            CountGame a = new CountGame();

            Console.WriteLine(a.howMany(8, 800, 793));
            Console.ReadLine();
        }
Exemplo n.º 2
0
 static void Main(string[] args)
 {
     CountGame a = new CountGame();
     Console.WriteLine(a.howMany(8, 800, 793));
     Console.ReadLine();
 }