本文主要是介绍UVA375 Inscribed Circles and Isosceles Triangles,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
思路:简单几何题....
#include <cstdio>
#include <cmath>
using namespace std;
const double pi = atan(1.0) * 4;double b, h, l, th, r, k;int main() {int n;scanf("%d", &n);while (n--) {scanf("%lf%lf", &b, &h);l = sqrt(b * b / 4 + h * h);r = b * h / (b + 2 * l);th = 2 * r;k = r / h;l = h - r * 2;while (l * k > 0.000001) {l -= l * k * 2;}printf("%13.6lf\n", pi * (h - l));if (n)printf("\n");}return 0;
}
Description
Inscribed Circles and Isosceles Triangles |
Given two real numbers
B - the width of the base of an isosceles triangle in inches
H - the altitude of the same isosceles triangle in inches
Compute to six significant decimal places
C - the sum of the circumferences of a series of inscribed circles stacked one on top of another from the base to the peak; such that the lowest inscribed circle is tangent to the base and the two sides and the next higher inscribed circle is tangent to the lowest inscribed circle and the two sides, etc. In order to keep the time required to compute the result within reasonable bounds, you may limit the radius of the smallest inscribed circle in the stack to a single precision floating point value of 0.000001.
For those whose geometry and trigonometry are a bit rusty, the center of an inscribed circle is at the point of intersection of the three angular bisectors.
Input
The input begins with a single positive integer on a line by itself indicating the number of the cases following, each of them as described below. This line is followed by a blank line, and there is also a blank line between two consecutive inputs.
The input will be a single line of text containing two positive single precision real numbers (BH) separated by spaces.
Output
For each test case, the output must follow the description below. The outputs of two consecutive cases will be separated by a blank line.
The output should be a single real number with twelve significant digits, six of which follow the decimal point. The decimal point must be printed in column 7.
Sample Input
10.263451 0.263451
Sample Output
0.827648
这篇关于UVA375 Inscribed Circles and Isosceles Triangles的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!