Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Qrcode
- Mail Header injection
- Masonic Cipher
- aslr
- webhacking
- burpsuit
- overthewire
- Python
- Navajo alphabet
- Fortran 90
- cookie
- php_extract
- 시저 암호
- vigenere cipher
- AVR
- BASE64
- Linux
- base16
- reversing
- sql injection
- Caesar Cipher
- Javscript
- JavaScript
- Web Hacking
- assembly
- 비즈네르 암호
- base32
- 카이사르 암호
- sha1
- Pigpen Cipher
Archives
- Today
- Total
My Drive
03. Expressions 본문
1. 수
◦ 연산자 :
+ 더하기
- 뺴기
* 곱하기
/ 나누기
** 거듭제곱
◦ 중요 함수 : sin, cos, tan, atan, exp, log (natural logarithm), log10 (logarithm to base 10), sqrt, . . .
정밀도가 높은 피연산자에 의해 결과가 나타난다.
◦ examples :
1/2 → 0
1./2 → 0.5000000
1/2. → 0.5000000
1/2._dp → 0.500000000000000
1+(1.,3) → (2.000000,3.000000)
2. 논리
◦ 연산자 :
.and. boolean "and"
.or. boolean "or"
.not. boolean "not"
.eq. or == "equal"
.ne. or /= "not equal"
.gt. or > "greater than"
.ge. or >= "greater than or equal"
.lt. or < "lower than"
.le. or <= "lower than or equal"
◦ 함수 : llt, lle, lgt, lge comparison of characters (“lexically . . .”)
3. 문자
◦ 연산자 :
// concatenation
◦ 함수 : char, ichar, trim, len
'programming' 카테고리의 다른 글
06. Input / Output (0) | 2014.10.27 |
---|---|
05. Decisions (0) | 2014.10.25 |
04. Loops (0) | 2014.10.25 |
02. Data types (자료형) (0) | 2014.10.24 |
01. Fortran Syntax (0) | 2014.10.24 |
Comments