aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/xpath/functions/ceiling/index.html
blob: cd671738fa185d8542b2d711edf6dd7233402893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
title: ceiling
slug: Web/XPath/Functions/ceiling
tags:
  - XSLT_Reference
translation_of: Web/XPath/Functions/ceiling
---
<p>{{ XsltRef() }}</p>
<p><br>
 <code>ceiling</code> 함수는 10진수를 평가하고 10진수보다 작지 않은 가장 작은 정수를 반환합니다.</p>
<h3 id=".EB.AC.B8.EB.B2.95" name=".EB.AC.B8.EB.B2.95">문법</h3>
<pre class="eval">ceiling(<i>number</i> )
</pre>
<h3 id=".EC.9D.B8.EC.88.98" name=".EC.9D.B8.EC.88.98">인수</h3>
<dl>
 <dt>
  <code>
  <i>
   number</i>
  </code></dt>
 <dd>
  평가할 수.</dd>
</dl>
<h3 id=".EB.B0.98.ED.99.98" name=".EB.B0.98.ED.99.98">반환</h3>
<p><code>
 <i>
  number</i>
 </code>보다 작지 않은 가장 작은 정수.</p>
<p>예를 들어,</p>
<p><code>    ceiling (
 <i>
  5.2</i>
 )</code> = <var>6</var></p>
<p><code>    ceiling (
 <i>
  -5.2</i>
 )</code> = <var>-5</var></p>
<h3 id=".EC.A0.95.EC.9D.98" name=".EC.A0.95.EC.9D.98">정의</h3>
<p><a class="external" href="http://www.w3.org/TR/xpath#function-ceiling">XPath 1.0 4.4</a></p>
<h3 id="Gecko_.EC.A7.80.EC.9B.90" name="Gecko_.EC.A7.80.EC.9B.90">Gecko 지원</h3>
<p>지원함.</p>