码迷,mamicode.com
首页 > Windows程序 > 详细

C#基础案例------聊天机器人

时间:2015-08-30 14:16:25      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:

 private void msg_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == \r)
            {
                liao.AppendText(DateTime.Now+"我说:\n");
                liao.AppendText(msg.Text+"\n");
                //获取用户输入的文本
                string wen = msg.Text;
                msg.Text = "";

                liao.AppendText("小雪回复:\n");
                if (wen.Contains("你好"))
                {
                    liao.AppendText("你好");
                }
                else if (wen.Contains("男人") || wen.Contains("女人"))
                {
                    liao.AppendText("人家是女孩子啦!^_^");
                }
                else if (wen.Contains("男朋友"))
                {
                    liao.AppendText("人家还小啦!嘻嘻~~~");
                }
                else
                {
                    liao.AppendText("呵呵");
                }
            }
        }

 

C#基础案例------聊天机器人

标签:

原文地址:http://www.cnblogs.com/phpweige/p/4770698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!