地理助手
User-Defined Function 练习编写成可重用的模块
此函数采用四个数字表示在平面上的两个点,并作为其参数
返回它们之间的距离。的距离公式如下所示。
的d=根号((x2-x1)2+ (y2-y1)2)
其中的2是平方的意思,我无法打上脚标。希望你们能懂我的意思。
程序必须具备以下功能。每个函数之前,应先通过一个doxygen的风格
我第一次写关于User-Defined Function 的程序,不知道对不,请指教!谢谢!
/** @brief This function takes as its paramenters four numbers
* that represent two points in the plane and returns the distance between them.
*
* Details.
*/
{
double distance (double x1,double y1,double x2, double y2)
cout<< "d="<< sqrt( pow((x2-x1),2)+ pow ((y2-y1),2))
}