輸入一個十進制數 如-14.48 61.3585
輸出二進制數應為 -1110.0111101011 和 111101.0101101111
這是我編寫的程序
#include
//轉化為2進制
void z2(int n)
{
if (n > 1)
{
z2(n / 2);
}
printf("%d", n % 2);
}
void z21(float f,int c)
{
float twice;
int tmp;
if (c == 0)
return;
twice = f * 2;
tmp = (int)twice;
printf("%d", tmp);
z21(twice - tmp, --c);
}
void main()
{
float shu = 0;
int zhengshu = 0;
printf("請輸入一個十進制數:");
scanf("%f", &shu);
zhengshu = (int)shu;
shu -= zhengshu;
z211(zhengshu,shu);
}
我輸入 61.3585輸出111101.01011011 輸入 -14.48 輸出 0.0-1-1-1-10-10 結果都不對呀,如何改正??
看你問了這麼多遍實在不忍心不理你了,關鍵原來問題的問題,你都不回復我,我只能按照自己的理解寫了,具體見代碼:
#include <stdio.h>
//轉化為2進制
void z2(int n)
{
if (n > 1)
{
z2(n / 2);
}
printf("%d", n % 2);
}
void z21(float f,int c)
{
float twice;
int tmp;
if (c == 0)
return;
twice = f * 2;
tmp = (int)twice;
printf("%d", tmp);
z21(twice - tmp, --c);
}
void z211(int zhengshu, float xiaoshu)
{
// 輸出整數部分
z2(zhengshu);
if (xiaoshu > 0.000001)
{
printf(".");
}
// 輸出小數部分
z21(xiaoshu, 10);
}
void main()
{
float shu = 0;
int zhengshu = 0;
printf("請輸入一個十進制數:");
scanf("%f", &shu);
if(shu < 0)
{
printf("-");
shu *= -1;
}
zhengshu = (int)shu;
shu -= zhengshu;
z211(zhengshu,shu);
}