表示一个简单的机器人的实现。
상속: IRobot
예제 #1
0
파일: Program.cs 프로젝트: xuld/AI-Robot
        static void Main(string[] args)
        {
            Console.Title = "AI-Robot 自动聊天机器人";
            Console.WriteLine("输入任何文字并回车...");

            // 创建一个简单的机器人并回复。
            IRobot robot = new SimpleRobot();
            string s;

            while ((s = Console.ReadLine()) != null) {
                string answer = robot.Answer(s, new NameValueCollection());

                if (answer == null) {
                    Console.WriteLine("(无法回复)");
                } else {
                    Console.WriteLine(answer);
                }

            }
        }
예제 #2
0
        static void Main(string[] args)
        {
            Console.Title = "AI-Robot 自动聊天机器人";
            Console.WriteLine("输入任何文字并回车...");

            // 创建一个简单的机器人并回复。
            IRobot robot = new SimpleRobot();
            string s;

            while ((s = Console.ReadLine()) != null)
            {
                string answer = robot.Answer(s, new NameValueCollection());

                if (answer == null)
                {
                    Console.WriteLine("(无法回复)");
                }
                else
                {
                    Console.WriteLine(answer);
                }
            }
        }