This commit is contained in:
2019-07-29 11:07:35 +02:00
parent ea589a8d62
commit 3475a8c8a6

View File

@@ -0,0 +1,13 @@
<?php
$n = $_REQUEST['n'];
header("Content-Type: application/json");
echo(lenschomode($n));
function lenschomode($n) {
return pow($n,2);
}
?>