gpt4 book ai didi

go - 提取数字中特定位置的数字

转载 作者:IT王子 更新时间:2023-10-29 01:16:38 32 4
gpt4 key购买 nike

number := 111555

如何获取前 3 位数字 (111) 和后 2 位数字 (55)?

最佳答案

通过使用简单的算术:

func d(num int) (firstThree int, lastTwo int) {
firstThree = num / 1000
lastTwo = num % 100
return
}

关于go - 提取数字中特定位置的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46753736/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com