题目链接:uva 10335 - Ray Inside a Polygon
恶心题,注意精度和输出等问题,代码中有标识,后面有一些数据。
#include
#include
#include
#include
#include
using namespace std;
const double pi = 4 * atan(1);
const double eps =...
分类:
其他好文 时间:
2015-08-17 21:46:04
阅读次数:
100
题目链接:uva 11186 - Circum Triangle
枚举两点,计算该两点与圆心构成的三角形对ans的贡献值。
#include
#include
#include
#include
using namespace std;
const int maxn = 505;
const double pi = 4 * atan(1);
double A[max...
分类:
其他好文 时间:
2015-08-15 12:03:25
阅读次数:
117
题目链接:uva 194 - Triangle
注意两边一角,并接角的对边确定时(即用正弦定理求解时,可能会有多解的情况)
#include
#include
#include
#include
using namespace std;
const double pi = 4 * atan(1);
const double eps = 1e-4;
double A[...
分类:
其他好文 时间:
2015-08-15 12:00:17
阅读次数:
144
相比较ATan,ATan2究竟有什么不同?本篇介绍一下ATan2的用法及使用条件。对于tan(θ) =y/x:θ=ATan(y/x)求出的θ取值范围是[-PI/2, PI/2]。θ=ATan2(y, x)求出的θ取值范围是[-PI, PI]。当 (x,y) 在第一象限, 0 <θ<PI/2.当(x,...
分类:
其他好文 时间:
2015-07-31 21:50:37
阅读次数:
221
Math.abs()计算绝对值。Math.acos()计算反余弦值。Math.asin()计算反正弦值。Math.atan()计算反正切值。Math.atan2()计算从x坐标轴到点的角度。Math.ceil()将数字向上舍入为最接近的整数。Math.cos()计算余弦值。Math.exp()计算指...
java.math.Math类常用的常量和方法:Math.PI 记录的圆周率Math.E记录e的常量Math.abs 求绝对值Math.sin 正弦函数 Math.asin 反正弦函数Math.cos 余弦函数 Math.acos 反余弦函数Math.tan 正切函数 Math.atan 反正切函数...
分类:
其他好文 时间:
2015-07-17 11:48:07
阅读次数:
115
sin(x):求x的正弦cos(x):求x的余弦asin(x):求x的反正弦acos(x):求x的反余弦tan(x):求x的正切atan(x):求x的反正切hypot(x,y):求直角三角形的斜边长度fmod(x,y):求x/y的余数ceil(x):取不小于x的最小整数floor(x):求不大于x的...
分类:
编程语言 时间:
2015-05-12 20:35:45
阅读次数:
136
前面介绍了:控制台绘制正弦/余弦曲线 , 控制台绘制正弦曲线和余弦曲线同时显示下面来看看正切曲线吧,其实也都差不多……#include
#include int main()
{
double y;
int x,k; for(y=10;y>=-10;y--)
{
k=atan(y)*7; if(k>0)...
分类:
其他好文 时间:
2015-04-30 14:19:45
阅读次数:
109
分析:数学公式推到:
1.tan(a+b) = ( tan(a) + tan(b) ) / (1 – tan(a) * tan(b) )
2.tan( atan(x) ) = x
根据公式1和2有:
arctan(1/s) = arctan(1/u)+arctan(1/v)
所以得1/s = tan( arctan(1/u)+arctan(1/v) ) = (tan(arctan(1/u...
分类:
其他好文 时间:
2015-04-22 18:09:15
阅读次数:
143
abs -- 绝对值acos -- 反余弦acosh -- 反双曲余弦asin -- 反正弦asinh -- 反双曲正弦atan2 -- 两个参数的反正切atan -- 反正切atanh -- 反双曲正切base_convert -- 在任意进制之间转换数字bindec -- 二进制转换为十进制ce...
分类:
其他好文 时间:
2015-04-03 09:13:54
阅读次数:
108