gpt4 book ai didi

c - 使用 C 将整数转换为其二进制表示形式?

转载 作者:太空宇宙 更新时间:2023-11-04 05:19:55 25 4
gpt4 key购买 nike

我还是编码的初学者,所以我遇到了这个问题我正在尝试将整数转换为其二进制表示形式

 #include <stdio.h>
int main () {
int x;
printf("input the number\n");
scanf("%d",&x);

while(x!=0) {
if (x%2)
printf("1");
else
printf("0");
}
return 0;
}

所以它输出像这样 12=0011 但 12=1100问题是什么,我该如何解决?

最佳答案

操作的程序逻辑错误,试试这个

#include <stdio.h>
int main()
{
int n, c, k;

printf("Enter an integer in decimal number system\n");
scanf("%d", &n);
printf("%d in binary number system is:\n", n);

for (c = 31; c >= 0; c--)
{
k = n >> c;

if (k & 1)
printf("1");
else
printf("0");
}

printf("\n");
}
return 0;
}

关于c - 使用 C 将整数转换为其二进制表示形式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15115646/

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