Write a PHP program which reads the two adjoined sides and the diagonal of a parallelogram and check whether the parallelogram is a rectangle or a rhombus

  • برمجة بي اتش بي

Write a PHP program which reads the two adjoined sides and the diagonal of a parallelogram and check whether the parallelogram is a rectangle or a rhombus

Input: Two adjoined sides and the diagonal.
1 ≤ ai, bi, ci ≤ 1000, ai + bi > ci

Pictorial Presentation:

الأجوبة

<?php
$e1 = 3; 
$e2 = 4;
$di = 5;
//$e1 = 5; 
//$e2 = 5;
//$di = 8;
$rec = 0;
$dia = 0;   
    if ($e1 * $e1 + $e2 * $e2 === $di * $di) {
        $rec++;
    }
    if ($e1 === $e2) {
        $dia++;
    } 
if ($rec>0)
echo "This is rectangles.";
if ($dia>0)
echo "This is rhombus.";
?>

Sample Input:
4,5,6
6,6,9

هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...