"WIKI:특수 명령문"의 두 판 사이의 차이

이 문서는 2020년 7월 17일 (금) 08:32에 마지막으로 편집되었습니다.
11번째 줄: 11번째 줄:
| style="word-spacing: 0.5em; font-weight: bold;" | <code>( )</code>
| style="word-spacing: 0.5em; font-weight: bold;" | <code>( )</code>
|-
|-
|  | <!--T:6--> Numbers
|  | <!--T:6--> 숫자(값)
| <code>'''1234.5'''</code> &nbsp; <code>'''e'''</code>&nbsp;(2.718) &nbsp; <code>'''pi'''</code>&nbsp;(3.142)
| <code>'''1234.5'''</code> &nbsp; <code>'''e'''</code>&nbsp;(2.718) &nbsp; <code>'''pi'''</code>&nbsp;(3.142)
|-
|-
27번째 줄: 27번째 줄:
| style="word-spacing: 0.5em; font-weight: bold;" | <code>+ -</code>
| style="word-spacing: 0.5em; font-weight: bold;" | <code>+ -</code>
|-
|-
|  | <translate><!--T:11--> Round</translate>
|  | <!--T:11--> Round
| style="word-spacing: 0.5em; font-weight: bold;" | <code>round</code>
| style="word-spacing: 0.5em; font-weight: bold;" | <code>round</code>
|-
|-

2020년 7월 17일 (금) 08:32 판

특수 명령문은 다양한 기능을 가지고 있어 복잡하게 동작하는 틀을 만들때 효과적입니다.

#expr

Type Operators
Grouping (parentheses) ( )
숫자(값) 1234.5   e (2.718)   pi (3.142)
binary operator> e   unary +,-
Unary not ceil trunc floor abs exp ln sin cos tan acos asin atan
Binary ^
* / div mod
+ -
Round round
Logic = != <> > < >= <=
and
or