博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
golang convert integer to float number
阅读量:5054 次
发布时间:2019-06-12

本文共 279 字,大约阅读时间需要 1 分钟。

There is no float type. Looks like you want float64. You could also use float32 if you only need a single-precision floating point value.

package mainimport "fmt" func main() { i := 5 f := float64(i) fmt.Printf("f is %f\n", f) }

转载于:https://www.cnblogs.com/oxspirt/p/7059515.html

你可能感兴趣的文章
lemon详细使用方法
查看>>
Windows Server 笔记(七):Windows Server 2012 R2 NIC Teaming(NIC组)
查看>>
3.window窗口
查看>>
SQL Link Oracle
查看>>
bzoj 1007: [HNOI2008]水平可见直线 半平面交
查看>>
2017-02-26
查看>>
使用cookie实现只出现一次的广告代码效果
查看>>
Android网络通信框架---Volley
查看>>
浅谈animation里的forwards
查看>>
事件的节流(throttle)与防抖(debounce)
查看>>
07_ddms透视图介绍
查看>>
python初步学习-python模块之 logging
查看>>
Molas——.NET依赖分离框架
查看>>
静态页面传值
查看>>
智能手持终端方案
查看>>
基于visual Studio2013解决C语言竞赛题之0408素数
查看>>
Harbor-企业级Registry服务器使用(图解)
查看>>
新建的亚马逊云服务器EC2 ping 不通 解决方案
查看>>
一 数据的概括性度量
查看>>
Spring boot(一) 入门
查看>>