gpt4 book ai didi

c# - 我正在尝试制作一个非常简单的程序,将十进制转换为二进制,但我需要将它们颠倒过来

转载 作者:太空宇宙 更新时间:2023-11-03 19:57:13 24 4
gpt4 key购买 nike

class Decimal_to_binary
{
static void Main()
{
int n = int.Parse(Console.ReadLine()); //input.

while(n >= 1) // it stops if there is no number to divide.
{
int digit = n % 2; // this shows the digit .
Console.Write(digit);
n = n / 2; // for calculating another digit.
}
Console.WriteLine();
}
}

输入:12
输出:0011(必须是1100)

最佳答案

这是一辆自行车。

Convert.ToString(n, 2)

https://msdn.microsoft.com/en-us/library/14kwkz77(v=vs.110).aspx

关于c# - 我正在尝试制作一个非常简单的程序,将十进制转换为二进制,但我需要将它们颠倒过来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32300849/

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