标题:十进制转换2进制问题
取消只看楼主
a15022606145
Rank: 1
等 级:新手上路
帖 子:75
专家分:0
注 册:2015-7-11
 问题点数:0 回复次数:3 
十进制转换2进制问题
程序代码:
#include<stdio.h>
#include<string.h>
void ten_to_two(int n,char *b)
{
    
    int count = 0;
    char buf[128]={0};
    while(1)
    {
        buf[count] = n%2;
    //    n=n%2;
        n=n/2;    
        
            if(n==0) break;
            count++;
    }
    printf("count=%d\n",count);
    for(int i = count;i >=0;i--)
    {
        b[i]=buf[count-i];
    }

    
}

int main()
{
    int n = 15;
    char buf[128]={0};
    ten_to_two(n,buf);
    puts(buf);
    int i = strlen(buf);
    printf("i=%d\n",i);
    return 0;
}



找个明白人 为什么我主函数里面的buf是乱码呢
搜索更多相关主题的帖子: 十进制 转换 int char count 
2018-08-21 14:00
a15022606145
Rank: 1
等 级:新手上路
帖 子:75
专家分:0
注 册:2015-7-11
得分:0 
回复 2楼 rjsp
程序代码:
#include<stdio.h>
#include<string.h>
void ten_to_two(int n,char *b)
{
    
    int count = 0;
    char buf[128]={0};
    while(1)
    {
        buf[count] = n%2-'0';
        n=n/2;    
        
            if(n==0) break;
            count++;
    }
    printf("count=%d\n",count);
    for(int i = count;i >=0;i--)
    {
        b[i]=buf[count-i];
    }

    
}

int main()
{
    int n = 15;
    char buf[128]={0};
    ten_to_two(n,buf);
    puts(buf);
    int i = strlen(buf);
    printf("i=%d\n",i);
    return 0;
}





这样还是乱码 5555555555
2018-08-21 14:34
a15022606145
Rank: 1
等 级:新手上路
帖 子:75
专家分:0
注 册:2015-7-11
得分:0 
回复 4楼 尘安
你看看我第二个代码 在3楼~~
2018-08-21 14:48
a15022606145
Rank: 1
等 级:新手上路
帖 子:75
专家分:0
注 册:2015-7-11
得分:0 
回复 4楼 尘安
为什么 + ‘0’ 正确  而-‘0’ 不正确呢?
2018-08-21 14:50



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-489343-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.178906 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved