サイト内検索

Math メソッド一覧

スポンサー

ホーム > Math > ceil

ceil

天井関数を計算します.

シンタックス

Math.ceil(x)
  • x - 数値

解説

ceilメソッドはx以上の最小の整数を返します.

サンプルコード

以下にceilメソッドを使用したサンプルコードを示します.

<html>
  <head>
    <title>ceilメソッドのサンプルコード</title>
  </head>
  <body>
    <script type="text/javascript" language="javascript">
      document.write(Math.ceil(1.0001) + "<br />");
      document.write(Math.ceil(-1.0001) + "<br />");
      document.write(Math.ceil(1.5000) + "<br />");
      document.write(Math.ceil(-1.5000) + "<br />");
      document.write(Math.ceil(0) + "<br />");
    </script>
  </body>
</html>

実行例

サンプルコードの実行結果は以下のようになります.

2
-1
2
-1
0

関連項目

スポンサード リンク

inserted by FC2 system