POJ 2242 The Circumference of the Circle C++版
题目链接:http://poj.org/problem?id=2242
题目给出三个点坐标,求经过三个点的圆的周长。
纯数学问题,没什么好说的
其中fixed是用来输出纯浮点,也就是不使用科学计数法,若要使用科学计数法应该使用scientific
代码如下:
1 | /*Problem: 2242 User: awq123 |
题目链接:http://poj.org/problem?id=2242
题目给出三个点坐标,求经过三个点的圆的周长。
纯数学问题,没什么好说的
其中fixed是用来输出纯浮点,也就是不使用科学计数法,若要使用科学计数法应该使用scientific
代码如下:
1 | /*Problem: 2242 User: awq123 |