This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql04d/bedingte_funktion.php
T

17 lines
196 B
PHP

<?php
$zahl = 15;
if ($zahl >= 10)
{
function quadrat($qzahl)
{
echo "Das Qadrat von $qzahl ist "
.($qzahl * $qzahl) .".\n";
}
}
quadrat($zahl);
?>