doumu2172 2017-09-14 15:55 采纳率: 0%
浏览 47
已采纳

Golang:fmt.Printf stdout的挂起发生在fmt.scan的for循环旁边

As title, it's hard for me to describe the problem. So I showed the sample code, input and output below.

package main

import (
    "fmt"
)

func main() {
    for i := 1; i <= 3; i++ {
        var a, b, c string
        fmt.Scan(&a)
        fmt.Scan(&b)
        fmt.Scan(&c)
        fmt.Printf("%s
", a)
    }
}

Input

a b c
d e f
g h i

Expected Output

a
d
g

However, the actual output printed "a", "d" first. Then, after pressing return (enter) key, "g" was printed. This was actual output.


Update

If I pasted whole nine characters, the third iteration was hung. However, if I merely enter character one after another, it met the expected output.

  • 写回答

1条回答 默认 最新

  • dtwupu6414 2017-09-14 17:30
    关注

    How did you enter that input without a return (enter) ?

    If you run this interactively and actually typing in all the input I think you'll understand the reason for the output.

    You will have to:

    • Type a b c - nothing will output yet as the third Scan does not know if c is all you'll type
    • Press return (enter) - only at this point you'll see the a output
    • Do the same for the other lines

    Take a look at the doc for Scan which explains this as well:

    https://golang.org/pkg/fmt/#Scan

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里