예제 #1
0
        static void Main(string[] args)
        {
            // BouncingBall ball = new BouncingBall();
            double result = BouncingBall.bouncingBall(3.00, 0.66, 1.50);

            Console.WriteLine("Mother has seen the ball " + result + " times.");
            // Close the console window
            Console.ReadKey();
        }
예제 #2
0
파일: Program.cs 프로젝트: Haaanky/codewars
 static void Main(string[] args)
 {
     BouncingBall.bouncingBall(3.0, 0.66, 1.5);
     BouncingBall.bouncingBall(30.0, 0.66, 1.5);
 }