6 lines
83 B
PHP
6 lines
83 B
PHP
<?php
|
|
$pi = "3.1415927";
|
|
$radius = 5;
|
|
echo $pi * ($radius * $radius);
|
|
?>
|