今天有点忙,学习的有些晚,也有些少。今天主要是了解函数,知道同一文件内,函数名不能重复,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也算不出来,只是整数
明天再研究吧
--------------2019.2.14补录---------------------
如果要出现小数点,则需要保证所有参与计算的变量都是flaot型
即func timesqr(seconds int)(secondout,minterout,hourout int) {
修改为func timesqr(seconds flaot)(secondout,minterout,hourout flaot) {
网友评论