18 lines
327 B
PHP
18 lines
327 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Document</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php
|
||
|
$n = $_POST['n'];
|
||
|
|
||
|
//n = ilosc elementow ciagu fibonnaciego\
|
||
|
|
||
|
//oblicz ciag fibonnaciego z n
|
||
|
|
||
|
?>
|
||
|
</body>
|
||
|
</html>
|