码迷,mamicode.com
首页 > 编程语言 > 详细

Go语言十进制转二进制字符串

时间:2020-09-24 21:14:27      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:code   testing   git   hub   cto   方法   dem   tin   github   

Go语言十进制转二进制字符串

代码Demo

func Test_2(t *testing.T) {
	// 方法一
	fmt.Println(DecToBin(5))
	// 方法二:导入包"github.com/imroc/biu"
	fmt.Println(biu.ToBinaryString(uint8(5)))
}

// 原理:除2取模是最低位
func DecToBin(n int) string {
	result := ""

	if n == 0 {
		return "0"
	}

	for ;n > 0;n /= 2 {
		lsb := n % 2
		result = strconv.Itoa(lsb) + result
	}

	return result
}

打印

=== RUN   Test_2
101
00000101
--- PASS: Test_2 (0.00s)
PASS

Process finished with exit code 0

Go语言十进制转二进制字符串

标签:code   testing   git   hub   cto   方法   dem   tin   github   

原文地址:https://www.cnblogs.com/Kingram/p/13717801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!