Math.tan

正接を得る

構文

Math.tan(x)

引数

x=数値

例文

<html>
<head>
<title>Math.tan</title>
</head>

<body>

<!--正接を得るのサンプル-->
<script type="text/javascript">
document.write('0.50の正接(tan)は'+Math.tan(0.50)+"です<br>");
document.write('-0.50の正接(tan)は'+Math.tan(-0.50)+"です<br>");
document.write('5の正接(tan)は'+Math.tan(5)+"です<br>");
document.write('10の正接(tan)は'+Math.tan(10)+"です<br>");
document.write('-5の正接(tan)は'+Math.tan(-5)+"です<br>");
document.write('-10の正接(tan)は'+Math.tan(-10));
</script>

</body>
</html>

関連記事

スポンサーリンク

chia wallet get_address ウォレットの受け取りアドレスを取得する

ホームページ製作・web系アプリ系の製作案件募集中です。

上に戻る