dougu4704 2016-10-14 05:36
浏览 104
已采纳

在golang中读取行

There are so many option to do this in Go. For example:

scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
    fmt.Println(scanner.Text())
}

or

reader := bufio.NewReader(os.Stdin)
text, _ := reader.ReadString('
')

Neither is working in my case. I am unable to find the reason why new line scan is not working.

Here's the question I'm working on: https://www.hackerrank.com/challenges/30-dictionaries-and-maps

And here's my code:

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

func main() {
    var count int
    fmt.Scan(&count)

    m := make(map[string]string)
    for i := 0; i<count; i++{
        reader := bufio.NewReader(os.Stdin)
        text,err := reader.ReadString('
')
        if err != nil {
           fmt.Println(err)
        }
        value := strings.Fields(text)
        m[value[0]] = value[1]
    }
    var names []string
    for i := 0; i<count; i++{
        var name string
        fmt.Scan(&name)
        names = append(names,name)
    }

    for j:= 0; j<len(names);j++{
        if m[names[j]] != ""{
            fmt.Println(names[j] +" = "+ m[names[j]])
        }else{
            fmt.Println("Not found")
        }

    }

}

It is working in my editor, but when I use the question's input, it doesn't work.

  • 写回答

2条回答 默认 最新

  • doutuanxiao4619 2016-10-15 16:06
    关注

    As requested in the comments, here was my working example:

    package main
    
    import (
        "bufio"
        "fmt"
        "os"
    )
    
    func main() {
        phonebook := make(map[string]int)
    
        var count int
        fmt.Scan(&count)
        for i := 0; i < count; i++ {
            var name string
            var number int
            fmt.Scan(&name, &number)
            phonebook[name] = number
        }
    
        scanner := bufio.NewScanner(os.Stdin)
        for scanner.Scan() {
            name := scanner.Text()
            if number, ok := phonebook[name]; ok {
                fmt.Printf("%s=%d
    ", name, number)
            } else {
                fmt.Println("Not found")
            }
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料