如何使用不同的函数计算三个数的和,平均值和乘积

时间:2017-12-08 11:53:34

标签: c++ function

我需要创建一个程序,接受3个数字并找到总和,平均值和乘积。我只需要使用 main() get_ABC() compute() display()函数。我做得对,但我没有得到关于我的数学运算的正确输出。

#include<conio.h>
#include<iostream.h>

float get_A(float A)
{
    cout<<"Enter First Number: ";
    cin>>A;
    return(A);
}

float get_B(float B)
{
    cout<<"Enter Second Number: ";
    cin>>B;
    return(B);
}

float get_C(float C)
{
    cout<<"Enter Third Number: ";
    cin>>C;
    return(C);
}

 float compute_sum(float A,float B,float C)
{
 float sum;

 sum = A + B + C;
 return(sum);

}

float compute_ave(float A,float B,float C)
{
    float ave;
    ave = (A + B + C) / 3;
    return (ave);
}

float compute_prod(float A,float B,float C)
{
    float prod;
    prod = A * B * C;
    return(prod);
}

void display(float sum,float ave,float prod)
{
    cout<<"The sum of three numbers is "<<sum<<".\n";
    cout<<"The average of three numbers is "<<ave<<".\n";
    cout<<"The product of three numbers is "<<prod<<".";
}

float main()
{
    float A,B,C;
    float sum;
    float ave;
    float pro;
    clrscr();
    get_A(A);
    get_B(B);
    get_C(C);
    sum = compute_sum(A,B,C);
    ave = compute_ave(A,B,C);
    pro = compute_prod(A,B,C);
    display(sum,ave,pro);
    getch();
    return(0);
}

这是输出。

Enter First Number: 1
Enter Second Number: 2
Enter Third Number: 3
The sum of three numbers is 0.
The average of three numbers is 0.
The product of three numbers is 0.

我真的需要帮助。我的教授在没有教授如何编码的情况下给我这个问题,所以我只想出基础知识,我真的放弃了,最后来到这里。您可以根据需要更改,添加或替换代码(使用基本代码),我会很感激。

1 个答案:

答案 0 :(得分:1)

改变这个:

get_A(A);
get_B(B);
get_C(C);

到此:

A = get_A(A);
B = get_B(B);
C = get_C(C);

以便您使用函数的返回值

此外,main()应该返回int,而不是float

此外,在声明变量时初始化变量,以避免“在此函数中使用未初始化”警告。