这就是我所做的,但无论我不断获得无穷大:
public double calcr(){
double cot = 1 / Math.tan(0);
return .5 * sideLength * cot * (Math.PI / numSides);
}
主要的:
RegularPolygon poly = new RegularPolygon(4, 10);
System.out.println(poly.calcr());
输出:
Inifinity
我究竟做错了什么?