gpt4 book ai didi

c - 如何将用户输入函数与另一个函数一起使用?

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

我有这两个函数,ReadData 假设接受用户输入的三个数字,另一个函数 ComputeSum 假设接受用户输入的值并将它们相加。我试图将 ComputeSum 函数的结果分配给 total 变量,但它无法打印正确的总数。有人可以解释导致这种情况发生的原因吗?

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <math.h>


void ReadData(int *x,int *y,int *z);
int ComputeSum(int x,int y,int z);


int main()
{
int x, y, z;
int total;

ReadData(&x, &y, &z);
printf("\n");

total = ComputeSum(x,y,z);

printf("The total is: %d", total);



printf("\n\n");

system("PAUSE");
return 0;

}




void ReadData(int *x,int *y,int *z)
{
printf("Enter three numbers : ");
scanf("%d %d %d", &x, &y, &z );
printf("\n");

ComputeSum(x,y,z);

return ;
}

int ComputeSum(int x,int y,int z)
{
int Sum = x+y+z;

return Sum;
}

___________________________________________________________________

**Sample Output**

Enter three numbers : 5 5 5


The total is: 8869621

Press any key to continue . . .

最佳答案

ReadData() 中的这一行不正确

scanf("%d %d %d", &x, &y, &z );

应该是

scanf("%d %d %d", x, y, z );

因为三个参数已经是指针了。同一函数中的以下行

ComputeSum(x,y,z);

也不对,应该是

ComputeSum(*x, *y, *z);

但它甚至没有必要,因为您不使用结果,而且无论如何它都会在 main 中调用。

请启用编译器警告并注意它们,这两种故障都会产生警告。

关于c - 如何将用户输入函数与另一个函数一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32605419/

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