コード例 #1
0
        public static void Main()
        {
            PingPong newPingPong = new PingPong();

            Console.WriteLine("Welcome to Ping Pong program. This program will count up to a number you enter and replace:");
            Console.WriteLine("- numbers divisible by 3 with 'Ping!'");
            Console.WriteLine("- numbers divisible by 5 with 'Pong!'");
            Console.WriteLine("- numbers divisible by 3 and 5 with 'Ping Pong!'");
            Console.WriteLine("-----------------------");
            Console.WriteLine("Please enter a number: ");
            string stringUserInput = Console.ReadLine();
            int    userInput       = int.Parse(stringUserInput);

            for (int i = 1; i <= userInput; i++)
            {
                Console.WriteLine(newPingPong.ReplacePingPong(i));
            }
        }