gpt4 book ai didi

ruby - 将十进制转换为二进制、八进制和十六进制?

转载 作者:数据小太阳 更新时间:2023-10-29 08:17:39 46 4
gpt4 key购买 nike

我正在尝试使用 Ruby 将始终为数字的变量转换为二进制、八进制和十六进制。

此时我的代码是:

def convert(number)
puts "#{number} in decimal is"
puts "#{number.to_s(2)} in binary"
puts "#{number.to_s(8)} in octal"
puts "#{number.to_s(16)} in hexadecimal"
end

到目前为止的输出是:

2 in decimal is
10 in binary
2 in octal
2 in hexadecimal

前两行运行良好,但之后它忽略了转换命令,只是将变量放入。有谁知道我错过了什么?

最佳答案

您忽略了 2 是... 2 以 8、16 或任何大于 2 的基数表示的事实。尝试 convert(42) 为了好玩。

关于ruby - 将十进制转换为二进制、八进制和十六进制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12374744/

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