标签:nbsp 测试 std color class amp span col math
描述给你正三角形的边长,pi=3.1415926 ,求正三角形的外接圆面积。
5 1 13 22 62 155
1.05 176.98 506.84 4025.43 25158.92
三角形的外接圆面积为S=abc/(4R)
#include<stdio.h> #include<math.h> #define pi 3.1415926 int main() { double a,r; int n; double S=0; scanf("%d",&n); while(n--) { scanf("%lf",&a); r=a/sqrt(3); S=pi*r*r; printf("%.2f\n",S); } }
标签:nbsp 测试 std color class amp span col math
原文地址:http://www.cnblogs.com/2228212230qq/p/7897109.html