戻る

解答例

PHP

<?php
header("Content-type: text/html; charset=utf-8");

echo "4のルートは";
echo sqrt(4) . "<br>";

echo "256のルートは";
echo sqrt(256) . "<br>";

echo "1048576のルートは";
echo sqrt(1048576) . "<br>";
?>

inserted by FC2 system