gpt4 book ai didi

c - 初学者 C 程序员需要指针帮助(我认为)

转载 作者:太空狗 更新时间:2023-10-29 15:44:22 25 4
gpt4 key购买 nike

我是一名初级程序员,我正在学习我的第一语言 C。

我主要从 Deitel 和 Deitel 的《C 如何编程》一书中学习,但也使用示例任务和大学里的东西,但我被困在了一个。

我对指针有非常非常基本的理解——在变量前面添加 & 使其打印地址,* 使用指针来使用存储在该地址等处的值。

我编写的这段代码用于计算两个数字的最大(最大?)公分母,实际上根本不需要或涉及指针。它使用两个函数并且逻辑都是正确的,因为如果我从第二个函数执行它,它会在屏幕上打印出正确的答案,而不是将它返回到主函数。这就是问题所在。

当第二个函数返回答案值时,出于某种原因,它返回我只能假设是一个指针。我不知道为什么会这样。我将能够使用它并将其转换为查找值 - 但是它似乎是第二个函数的局部指针并且被覆盖了。我在网上或书中找不到任何解决问题的方法。

感谢您阅读到这里。我扯得太多了。

这是我的代码和输出。任何帮助或指示(请原谅双关语)将不胜感激。我知道我可以在第二个函数中打印它,但我更想知道它如何以及为什么不返回我希望的值。

代码

#include <stdio.h>
int greatestCD (int num1, int num2);

int main(void)
{
int a=0, b=0;
int result;
printf("Please enter two numbers to calculate the greatest common denominator from\n");
scanf("%d%d", &a, &b);
result = greatestCD (a,b);
printf("Using the correct in main way:\nThe greatest common denominator of %d and %d is %d\n",a,b, result);
}

int greatestCD (int num1 ,int num2)
{

if (num2==0){
printf("Using the cheaty in gcd function way:\nThe greatest common denominator is %d\n",num1);
return num1;
} else {
greatestCD(num2,(num1%num2));
}
}

输出(使用 12 和 15 - 答案应该是 3)

C:\Users\Sam\Documents\C programs>gcd
Please enter two numbers to calculate the greatest common denominator from
12
15
Using the cheaty in gcd function way:
The greatest common denominator is 3
Using the correct in main way:
The greatest common denominator of 12 and 15 is 2293524

来自 frankodwyer 的如此简单的解决方案。这是我无法发现或不知道的微小事物。那么返回的不是指针而是垃圾?

感谢一百万。

最佳答案

您在函数 greatestCD() 的最后一行中缺少“return”语句

greatestCD(num2,(num1%num2));

成功了

return greatestCD(num2,(num1%num2));

(你可能还有进一步的调试要做,但这就是它返回垃圾的原因......你没有告诉它还有什么要返回)

编辑:我还建议您在以后编译时打开所有编译器警告...如果您使用的是 gcc,则尝试将标志 -Wall 添加到您的编译命令。当你做的事情可能会导致这样的错误时,这应该会警告你。 (并非每个此类警告都必然是错误,因此称为“警告”,但它通常表示可能存在问题。)

关于c - 初学者 C 程序员需要指针帮助(我认为),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/394133/

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