gpt4 book ai didi

math - 将小数转换为混合基数(基本)

转载 作者:行者123 更新时间:2023-12-04 13:56:02 29 4
gpt4 key购买 nike

如何将十进制数字转换为mixed radix表示法?

我猜想给定每个基数数组的输入和十进制数,它应该输出每列值的数组。

最佳答案

伪代码:

bases = [24, 60, 60]
input = 86462 #One day, 1 minute, 2 seconds
output = []

for base in reverse(bases)
output.prepend(input mod base)
input = input div base #div is integer division (round down)

关于math - 将小数转换为混合基数(基本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/759296/

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