일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Web Hacking
- aslr
- Linux
- Fortran 90
- overthewire
- Javscript
- Mail Header injection
- vigenere cipher
- Qrcode
- sha1
- burpsuit
- cookie
- 시저 암호
- php_extract
- BASE64
- base32
- 비즈네르 암호
- assembly
- Caesar Cipher
- 카이사르 암호
- Pigpen Cipher
- Masonic Cipher
- webhacking
- sql injection
- Python
- Navajo alphabet
- reversing
- JavaScript
- base16
- AVR
- Today
- Total
My Drive
1. do-loop ( increment : 옵션, default = 1 )◦ example :do i=1,10,2 ! begin, end, incrementwrite(*,*) i,i**2enddo ! or, end do만약, begin이 end보다 크면, increment가 주어져야 함. 그렇지 않으면 실행 안됨◦ example :do i=10,1 ! not executedwrite(*,*) i,i**2enddo do i=10,1,-1 ! executedwrite(*,*) i,i**2enddo 2. while-loop◦ example :x=.2do while (x.lt..95)x=3.8*x*(1.-x)write(*,*) xenddo 3. 무한 루프◦ example :do ! "do forever". E..
1. 수◦ 연산자 :+ 더하기- 뺴기* 곱하기/ 나누기** 거듭제곱◦ 중요 함수 : sin, cos, tan, atan, exp, log (natural logarithm), log10 (logarithm to base 10), sqrt, . . .정밀도가 높은 피연산자에 의해 결과가 나타난다.◦ examples :1/2 → 01./2 → 0.50000001/2. → 0.50000001/2._dp → 0.5000000000000001+(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 > "gre..
1. 기본 자료형integer real complex character logical 2. 유도 자료형◦ example :type person ! type [type 이름]character (len=20) :: nameinteger :: ageend type ! end typetype(person) :: myselfmyself%age=17 3. 속성dimension allocatable parameter intent kind lensave pointer public private optionalparameter : 컴파일 타임에 정의되기 때문에, 프로그램 실행 줄 바뀔 수 없음 (배열 크기 선언 시 유용)◦ example :integer, parameter :: np=3real, dimension(np)..