gpt4 book ai didi

c - 字符转二进制(ASCII)的递归函数

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

我在旧货拍卖会上以 2 美元的价格买了一本编程书籍,因为我一直想学习如何编码,但没有足够的钱和资源上学。我已经很好地完成了前几章,但我也找到了解决我正在处理的问题的方法。但是当他们开始列出问题时,本章在章节总结之后缺少了几页。我想知道你们是否可以帮助我。

问题来了。注意:需要使用递归函数。

#include <stdio.h>
#include <stdlib.h>

void binaryPrinter(int value, int *numberOfOnes);
void print(char c);

//You do not need to modify any code in main
int main()
{
char value;
int result = 1;

while(result != EOF)
{
result = scanf("%c",&value);

if(result != EOF && value != '\n')
{
print(value);
}
}
}

//@hint: This is called from main, this function calls binaryPrinter
void print(char c)
{

}

//@hint: this function is only called from print
void binaryPrinter(int value, int *numberOfOnes)
{

}

最佳答案

void print(char c)
{
int n = CHAR_BIT;
binaryPrinter((unsigned char)c, &n);
putchar('\n');
}

void binaryPrinter(int value, int *numberOfOnes)
{
if((*numberOfOnes)--){
binaryPrinter(value >> 1, numberOfOnes);
printf("%d", value & 1);
}
}

关于c - 字符转二进制(ASCII)的递归函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26150083/

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