ГлавнаяСборникиТурнирыРазделыФорумыУчастникиПечатьПомощьО системе

Разделы > Геометрия > задача:


50487 - Radius of Inscribed Circle

Гость
• Вопросы к жюри (2)

Задачи раздела

• 51041 - Plane Segmentation
• 50422 - Area and Perimeter of diffe...
• 50473 - Counting Circles Positions
• 50327 - Parallel Lines
• 50362 - Pythagorean Numbers
• 50328 - How far away
• 50397 - The Number of Points in a ...
• 50399 - Mobile Base Station
• 50487 - Radius of Inscribed Circle
• 50480 - What quadrant is it?
• 50825 - Drawing Polygon
• 50508 - The Biggest Area
• 50854 - Area of Triangle Revised
• 50669 - Area of an Irregular Polygon
• 51034 - Area of 3 Shapes
• 50349 - Area of a Triangle
• 50348 - Area and Perimeter of a Rec...

Обратная связь

Если у вас есть предложения или пожелания по работе Contester, посетите форум сайта www.contester.ru.

Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб.
Question by Meral Ari.

Radius of Inscribed Circle

The area of a triangle is given by area = √ d  where d = s.(s-a).(s-b).(s-c). In the given formulas; a, b, and c are the lengths of the sides of the given triangle, and s is the semiperimeter of the triangle with the formula
s = (a + b + c) / 2

The radius of the inscribed circle r is given by the equation r = area / s and the radius of the circumscribed circle R is given by the equation R = (a*b*c)/(4*area)

Question: Write a program to read in the lengths of the sides of user defined number (n) of triangles. If d is a positive number, compute and print

  1. area
  2. radius of the inscribed circle (r)
  3. radius of the circumscribed circle (R)
for each triangle to a separate line. If the value of d for any given data is less than or equal to zero; print "Wrong Data!" and pass to next data.

Input specification
You will be given an integer (n) the number of triangles where 0 ≤ n ≤ 1000. Then, in each of the following n lines you will be given 3 integer numbers (lengths of the sides of each triangle: a, b, c)

Output specification:
If d is positive show three floating point numbers with 2 digits precision.

  1. area
  2. radius of the inscribed circle (r)
  3. radius of the circumscribed circle (R)
If d is zero or negative show the message "Wrong Data!"

Sample Input I
2
2 3 4
3 5 7
Sample Input II
2
8 2 4
7 5 4
Sample Output I
2.90 0.65 2.07
6.50 0.87 4.04
Sample Output II
Wrong Data!
9.80 1.22 3.57



Для отправки решений необходимо выполнить вход.

www.contester.ru