|
||||||||||||||||||||||||
Задание 1.2. Составление логических выраженийЗадание 1.2. Составление логических выражений
1. Треугольник со сторонами а, b, с существует и является равнобедренным. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <form method = "post"> <label>a</label> <input type="text" name = "a"> <label>b</label> <input type= "text" name = "b"> <label>c</label> <input type = "text" name = "c"> <input type= "submit"> </form> <?php $a = $_POST['a']; $b = $_POST['b']; $c = $_POST['c']; if ((($a + $b) > $c) || (($a + $c) > $b) || (($b + $c) > $a)) { if (($a == $b) || ($a == $c) || ($b == $c)) { echo "Этот треугольник равнобедренный"; } else echo "Такой треугольник существует"; } else echo "Нет такого треугольника"; ?> </body> </html>
2. Данные числа с и d являются соответственно квадратом и кубом числа а. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <form method = "post"> <label>a</label> <input type="text" name = "a"> <label>c</label> <input type= "text" name = "c"> <label>d</label> <input type = "text" name = "d"> <input type= "submit"> </form> <?php $a = $_POST['a']; $c = $_POST['c']; $d= $_POST['d']; if ((($c * $c) == $a) & (($d * $d * $d) == $a)) echo "True"; else echo "False"; ?> </body> </html>
3. Дробь А / В существует и является правильной. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <form method = "post"> <label>A</label> <input type="text" name = "A"> <label>B</label> <input type= "text" name = "B"> <input type= "submit"> </form> <?php $A = $_POST['A']; $B = $_POST['B']; if ($B > 0) echo "Дробь существует"; else echo "Дробь не существует"; if ($A < $B) echo "Дробь правильная"; else echo "Дробь неправильная" ?> </body> </html>
|
||||||||||||||||||||||||
|