码迷,mamicode.com
首页 > 其他好文 > 详细

Golang之一个简单的聊天机器人

时间:2018-01-05 15:20:08      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:class   hello   后退   取数   ring   func   简单   pos   hat   

翠花,上代码

package main

import (
    "bufio"
    "fmt"
    "os"
    "strings"
)

func main() {
    //从标准输入读取数据
    inputReader := bufio.NewReader(os.Stdin)
    fmt.Println("Please input your name:")
    //读取数据直到遇见\n位置
    input, err := inputReader.ReadString(\n)
    if err != nil {
        fmt.Printf("An error occurred:%s\n", err)
        //异常错误后退出
        os.Exit(1)

    } else {
        //用切片操作删除最后的\n
        name := input[:len(input)-1]
        fmt.Printf("Hello,%s!What can i di for you?\n", name)
    }
    for {
        input, err = inputReader.ReadString(\n)
        if err != nil {
            fmt.Printf("An error occurred:%s\n", err)
            continue
        }
        input = input[:len(input)-1]
        //全部转换为小写
        input = strings.ToLower(input)
        switch input {
        case "":
            continue
        case "nothing", "bye":
            fmt.Println("Bye!")
            //正常退出
            os.Exit(0)
        default:
            fmt.Println("Sorry,I didn‘t catch you.")

        }
    }
}

 

Golang之一个简单的聊天机器人

标签:class   hello   后退   取数   ring   func   简单   pos   hat   

原文地址:https://www.cnblogs.com/pyyu/p/8203550.html

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