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 |
Tags
- Mail Header injection
- overthewire
- 시저 암호
- Navajo alphabet
- Linux
- cookie
- base16
- Qrcode
- burpsuit
- Pigpen Cipher
- webhacking
- 카이사르 암호
- 비즈네르 암호
- aslr
- sha1
- base32
- assembly
- reversing
- php_extract
- Masonic Cipher
- Web Hacking
- vigenere cipher
- Caesar Cipher
- BASE64
- Javscript
- Fortran 90
- AVR
- sql injection
- JavaScript
- Python
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