VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 745|回复: 3

关于math

[复制链接]

2

主题

5

帖子

6.00

积分

新手上路

Rank: 1

积分
6.00
发表于 2020-12-15 23:00:01 | 显示全部楼层 |阅读模式
#include <iostream.h>
#include <math.h>
//#include <distance.h>

double distance(double a,double b,double c,double d)
{
        int res;
        res=squr((power((a-c),2)-power((b-d),2)),2);

                if(res<0)
                        res=-res;
                return res;


}


void main()
{   

        double  a,b,c,d;
        cout<<"Please input two points,like 2 3 reprents (2,3):"<<endl;
        cin>>a>>b>>c>>d;
        cout<<"the distance of the two points is :"<<distance(a,b,c,d)<<endl;



}




这是计算两点尖距离的程序,math类里面的方法都不清楚,帮我看一下计算语句res=squr((power((a-c),2)-power((b-d),2)),2);
如何改动??谢谢
回复

使用道具 举报

0

主题

9

帖子

8.00

积分

新手上路

Rank: 1

积分
8.00
发表于 2020-12-16 08:45:01 | 显示全部楼层

res=sqrt(  power(fabs(a-c),2)-power(fabs(b-d),2)  );
回复

使用道具 举报

2

主题

5

帖子

6.00

积分

新手上路

Rank: 1

积分
6.00
 楼主| 发表于 2020-12-20 08:30:01 | 显示全部楼层
fabs 是什么?为什么还要加这个 power(a,b)表示的不就是a的b次方吗
回复

使用道具 举报

0

主题

2

帖子

3.00

积分

新手上路

Rank: 1

积分
3.00
发表于 2020-12-21 11:30:01 | 显示全部楼层
fabs是求绝对值的意思
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表