Go语言学习第三天

栏目: Go · 发布时间: 5年前

今天有点忙,学习的有些晚,也有些少。今天主要是了解函数,知道同一文件内,函数名不能重复,main作为主函数用来显示主体内容,类似于index.html在网页的地位,但别的函数也能输出内容。

学习代码如下:

package main

import "fmt"

const (

second =60

minter=second*60

hour=minter*24)

func timesqr(seconds int)(secondout,minterout,hourout int) {

secondout=seconds

minterout=seconds/minter

hourout=seconds/hour

return

}

func main() {

fmt.Println(timesqr(1000))

//_,minterout,hourout=timesqr()

}

以上纯在手机上敲,有点麻烦。今天遇到的疑惑是GoLang的除法运算不知道怎么算出小数点

1000/13得到的是整数,%8.3f也算不出来,只是整数

明天再研究吧


以上所述就是小编给大家介绍的《Go语言学习第三天》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

How to Design Programs

How to Design Programs

Matthias Felleisen、Robert Bruce Findler、Matthew Flatt、Shriram Krishnamurthi / The MIT Press / 2001-2-12 / 71.00美元

This introduction to programming places computer science in the core of a liberal arts education. Unlike other introductory books, it focuses on the program design process. This approach fosters a var......一起来看看 《How to Design Programs》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具