iT邦幫忙

4

蠻可愛的 golang #13

  • 分享至 

  • xImage
  •  

今天是輸入的範例

// hello16
// 輸入範例
package main

import (
	"fmt"
)

var (
	x int = 5
	y int
)

func main() {
	fmt.Printf("輸入一個數字:")
	fmt.Scanf("%d", &y)

	if y >= x {
		fmt.Printf("if | %t\n", y >= x)
	} else {
		fmt.Printf("else | %t\n", y >= x)
	}
}

執行結果:

$ ./hello16 
輸入一個數字:6
if | true

$ ./hello16 
輸入一個數字:4
else | false

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

0
總裁
iT邦好手 1 級 ‧ 2014-07-16 17:08:43

要不要加個系列的連結呀??不然會以為只有這一篇....汗

我要留言

立即登入留言