mirror of
https://github.com/FlyInTheBox/31TSAI.git
synced 2024-12-22 22:37:00 +01:00
l
This commit is contained in:
parent
758c2db668
commit
4eba5bb851
1 changed files with 45 additions and 0 deletions
45
Zadanie 12.10.2022/condinationals.php
Normal file
45
Zadanie 12.10.2022/condinationals.php
Normal file
|
@ -0,0 +1,45 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Kondygnacje</title>
|
||||
</head>
|
||||
<body>
|
||||
<?PHP
|
||||
$losowa = rand(1, 30);
|
||||
?>
|
||||
<h2 style="color: darkorchid;text-align: center"><?= $losowa ?></h2>
|
||||
<?PHP
|
||||
if ($losowa > 20) {
|
||||
?>
|
||||
<h4 style="color: magenta; text-align: center">Wylosowana liczba jest większa lub równa 20.</h4>
|
||||
<?PHP
|
||||
}
|
||||
if ($losowa % 2 == 0) {
|
||||
?>
|
||||
<h4 style="text-align: center; color: navy">Losowa jest parzysta.</h4>
|
||||
<?PHP
|
||||
} else {
|
||||
?>
|
||||
<h4 style="text-align: center; color: navy">Losowa jest nieparzysta.</h4>
|
||||
<?PHP
|
||||
}
|
||||
if ($losowa <= 10) {
|
||||
?>
|
||||
<h4 style="text-align: center; color: deeppink">Pierwsza dziesiątka.</h4>
|
||||
<?PHP
|
||||
} elseif ($losowa <= 20) {
|
||||
?>
|
||||
<h4 style="text-align: center; color: deeppink">Druga dziesiątka.</h4>
|
||||
<?PHP
|
||||
} else {
|
||||
?>
|
||||
<h4 style="text-align: center; color: deeppink">Trzecia dziesiątka.</h4>
|
||||
<?PHP
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue