Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h2>La fonction sqrt()</h2> <?php echo(sqrt(64) . "<br>"); echo(sqrt(0) . "<br>"); echo(sqrt(1) . "<br>"); echo(sqrt(9)); ?> </body> </html>
La fonction sqrt()
8
0
1
3