标题:本人编译的一个函数,求指教
取消只看楼主
萧哲君
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2016-10-30
结帖率:87.5%
已结贴  问题点数:4 回复次数:3 
本人编译的一个函数,求指教
#include<stdio.h>
float det2(float,float,float,float);
float det3(float,float,float);
void showit(float);
int main()
{
    float a11,a12,a13,a21,a22,a23,a31,a32,a33;
    float x,y,z;
    float total;

    printf("Please enter the all parameter:");
    scanf("%f %f %f %f %f %f %f %f %f",&a11,&a12,&a13,&a21,&a22,&a23,&a31,&a32,&a33);

    x=det2(a22,a23,a32,a33);
    y=det2(a12,a13,a32,a33);
    z=det2(a12,a13,a22,a23);
    total=det3(x,y,z);
    showit(total);

    return 0;
}
float det2(float a22,float a23,float a32,float a33)
{
    float x;
    x=a22*a33-a23*a32;
    return (x);
}
float det2(float a12,float a13,float a32,float a33)
{
    float y;
    y=a12*a33-a13*a32;
    return (y);
}
float det2(float a12,float a13,float a22,float a23)
{
    float z;
    z=a12*a23-a13*a22;
    return (z);
}
float det3(float x,float y,float z,float a11,float a21,float a31)
{
    float total;
    total=a11*x-a21*y+a31*z;
    return (total);
}
void showit(float total)
{
    printf("The total value is %f",total);
}

我这样多次调用的det2函数存在什么问题
搜索更多相关主题的帖子: include return 
2016-11-04 23:27
萧哲君
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2016-10-30
得分:0 
回复 2楼 lanke711
函数重载是什么,如我所用,里面的确数据有所不同,为何出现错误,望解答。
2016-11-05 15:29
萧哲君
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2016-10-30
得分:0 
回复 2楼 lanke711
函数重载是什么,如我所用,里面的确数据有所不同,为何出现错误,望解答。
2016-11-05 15:29
萧哲君
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2016-10-30
得分:0 
回复 3楼 炎天
函数重载是什么,如我所用,里面的确数据有所不同,为何出现错误,望解答。
2016-11-05 15:30



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




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

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