算数 |
〆 算数の結果を表示します
<script type="text/javascript"> <!-- // 円周率 document.write(Math.PI); // 平方根 document.write(Math.sqrt(3)); // 絶対値 document.write(Math.ebs(-5)); // 四捨五入 document.write(Math.round(17.56)); // nのm乗 document.write(Math.pow(3,4)); // (x, y)座標から角度を取得 document.write(Math.atan2(1,2)); // 乱数を発生させる(0~1の間) document.write(Math.random()); // 大小比較 document.write(Math.max(100,500)); // 自然対数 document.write(Math.E); ⁄⁄--> </script> |
|