码迷,mamicode.com
首页 > 其他好文 > 详细

中秋娱乐一下,来个小数转化为二进制的代码

时间:2014-09-08 10:45:36      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   div   sp   代码   log   c   

 1 #include<stdio.h>
 2 int a[100];
 3 int main()
 4 {
 5     float n=0.17;
 6     int index=0;
 7     while(n)
 8     {
 9         float temp=n*2-1;
10         if(temp<0)
11         {
12             n=temp+1;
13             a[index]=0;
14         }
15         else
16         {
17             n=temp;
18             a[index]=1;
19         }
20         ++index;
21     }
22 
23     int m=0;
24     while(m<index)
25     {
26         printf("%d",a[m]);
27         ++m;
28     }
29     printf("\n");
30     return 0;
31 }

 

中秋娱乐一下,来个小数转化为二进制的代码

标签:style   blog   color   io   div   sp   代码   log   c   

原文地址:http://www.cnblogs.com/lhyz/p/3961107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!