스샷을 뒤지다 보니
웬지 찡했던 그리고 한동안은 에반팬클럽에 가입했던(!) 일러스트
'게임 > 마비노기' 카테고리의 다른 글
마비노기 펫 지름 ㅋㅋ (0) | 2014.07.06 |
---|---|
마비노기 10주년 (0) | 2014.06.24 |
10년째 망할 게임 마비노기 축하!! (0) | 2014.06.20 |
간만에 마비노기 ㅋㅋ (0) | 2014.06.11 |
마비노기 + 소드 아트 온라인 콜라보 ㄷㄷㄷ (0) | 2014.05.23 |
스샷을 뒤지다 보니
웬지 찡했던 그리고 한동안은 에반팬클럽에 가입했던(!) 일러스트
마비노기 펫 지름 ㅋㅋ (0) | 2014.07.06 |
---|---|
마비노기 10주년 (0) | 2014.06.24 |
10년째 망할 게임 마비노기 축하!! (0) | 2014.06.20 |
간만에 마비노기 ㅋㅋ (0) | 2014.06.11 |
마비노기 + 소드 아트 온라인 콜라보 ㄷㄷㄷ (0) | 2014.05.23 |
마비노기 10주년 공식 기념 영상
난 없었지만. NPC 공격이 되는 버그가 있었던 때
퍼거스가 키아던전까지 날라갔다지?
웬지 찡한 문구
나과장도 10년째 과장이구나 ㅋㅋ
마비노기 10주년 (0) | 2014.06.24 |
---|---|
마비노기 / 고마워요. 이세계에 와주셔서... (0) | 2014.06.20 |
간만에 마비노기 ㅋㅋ (0) | 2014.06.11 |
마비노기 + 소드 아트 온라인 콜라보 ㄷㄷㄷ (0) | 2014.05.23 |
마비노기 하드커버 노트 특별 한정판 2006년 (0) | 2014.02.23 |
FORTRAN 77 supports six data types:
LOGICAL boolean (true or false) CHARACTER character
INTEGER integer
COMPLEX single precision complex number REAL single precision floating point number
DOUBLE PRECISION double precision floating point number
[링크 : http://www.obliquity.com/computer/fortran/datatype.html] |
복소수 상수 complex constant이다. 이 때는 (real 또는 integer) 상수 한 쌍을 쉼표(comma)로 분리하고 괄호 (paranthese)로 둘러싸서 나타낸다. (2, -3)
(1., 9.9E-1)
첫 번째 숫자는 실수부, 두번째 숫자는 허수부이다.
[링크 : http://seismic.yonsei.ac.kr/fortran/expressions.html] ] |
Character Arrays When a dummy argument is a character array the passed-length mechanism can be used in the same way as for a character variable. Every element of the dummy array has the length that was passed in from the actual argument.
For example, a subroutine designed to sort an array of character strings into ascending order might start with specification statements like these:
SUBROUTINE SORT(NELS, NAMES)
INTEGER NELS
CHARACTER NAMES(NELS)*(*)
Alternatively the actual argument can be a character variable or substring. In such cases it usually makes more sense not to use the passed-length mechanism. For example an actual argument declared:
CHARACTER*80 LINE
could be passed to a subroutine which declared it as an array of four 20-character elements:
SUBROUTINE SPLIT(LINE)
CHARACTER LINE(4)*20
Although this is valid Fortran, it is not a very satisfactory programming technique to use a procedure call to alter the shape of an item so radically.
[링크 : http://www.star.le.ac.uk/~cgp/prof77.html] |
포트란77 문법 테스트 (0) | 2014.06.19 |
---|---|
fortran 첫 실행 >_< (0) | 2014.06.18 |
fortran 문법 (0) | 2014.06.08 |
1 program circle 2 real r, area |
$ fort77 simple.f
Error on line 1: illegal continuation card (starts "progra")
MAIN:
/usr/bin/fort77: aborting compilation |
7 write (*,*) 8 + 'Give radius r:' |
$ fort77 simple.f
MAIN circle:
Error on line 8: nondigit in statement label field " +"
Error on line 8: unclassifiable statement (starts "")
/usr/bin/fort77: aborting compilation |
7 write (*,*) 8 s 'Give radius r:' |
7 write (*,*) 8 + 'Give radius r:' |
재밌게도 포트란77은 c와 다르다죠.
dimension a(4,3)이라고 변수가 선언되었다면
a(1,1) a(2,1) a(3,1) a(4,1) a(1,2) a(2,2) ... 순서로 저장됩니다.
포트란9x에서는 row major인지 column major인지 지정할 수 있다는군요.
[링크 : https://kldp.org/node/75640] |
포트란 변수 타입 (0) | 2014.06.19 |
---|---|
fortran 첫 실행 >_< (0) | 2014.06.18 |
fortran 문법 (0) | 2014.06.08 |
일어문장을 출력하는데 &가 출력되지 않아 분석을 해보니
0xFF06 이라는 이상한 영역으로 문자열이 나오는 것을 발견..
Fullwidth 라는 녀석인데.. 일종의.. 고정폭 폰트 처럼 사용가능한 영역일거 같긴한데..
아무튼 폰트 갯수 제한으로 인해 따로 처리할 수 없기에
일반적인 0x0021 영역으로 매핑해도 무방할 듯 하다.
일본어 유니코드 (0) | 2014.06.09 |
---|---|
라틴 어군 관련 조사 (0) | 2012.09.10 |
일본어 기본 폰트 및 유니코드 영역(히라가나,가타가나) (8) | 2010.05.19 |
Hebrew code range (unicode) (0) | 2010.04.30 |
태국어(Thai) / 히브리어(Hebrew) (0) | 2010.04.23 |
$ vi simple.f
program circle
real r, area
c This program reads a real number r and prints
c the area of a circle with radius r.
write (*,*) 'Give radius r:'
read (*,*) r
area = 3.14159*r*r
write (*,*) 'Area = ', area
stop
end
MAIN circle:
$ ll
합계 20
drwxrwxr-x 2 minimonk minimonk 4096 6월 18 22:38 ./
drwxr-xr-x 55 minimonk minimonk 4096 6월 18 22:38 ../
-rwxrwxr-x 1 minimonk minimonk 7614 6월 18 22:38 a.out*
-rw-rw-r-- 1 minimonk minimonk 267 6월 18 22:38 simple.f
$ ./a.out
Give radius r:
10
Area = 314.158997 |
칸에 관한 규칙 (Column position rules)
Fortran 77은 정해진 형식이 없이 자유롭게 쓸 수 있는 언어가 아니라 원시 코드라고 하는 source code의 형식에 대한 매우 엄격한 규칙이 있다. 가장 중요한 규칙은 칸 (column)에 관한 규칙이다.
Col. 1 : 빈 칸 또는 설명임을 나타내는 "c" 나 "*"
Col. 2-5 : 문장 label (optional)
Col. 6 : 앞 줄의 연속 (optional)
Col. 7-72 : 문장
Col. 73-80: 일련 번호 (optional, 요즈음은 거의 사용하지 않음)
Fortran 77 프로그램의 대부분의 줄은 6 개의 빈칸으로 시작하여 72 번째 칸 이전에 끝나서 문장 영역(statement field)만 사용한다. 반면에 Fortran 90은 형식에 구애받지 않는 free-foramt이 가능하다.
|
포트란 변수 타입 (0) | 2014.06.19 |
---|---|
포트란77 문법 테스트 (0) | 2014.06.19 |
fortran 문법 (0) | 2014.06.08 |
tomcat war 정적 웹페이지 (0) | 2020.01.15 |
---|---|
JSP + CKeditor / CKfinder (0) | 2014.07.14 |
계층형 게시판 로직 (1) | 2014.06.04 |
jsp get방식 utf-8인데 한글 안될경우 (0) | 2014.05.27 |
스트러츠2 사용시 브라우저 상의 현재 경로얻기 2 (0) | 2014.05.27 |
[ subquery_factoring_clause ] SELECT [ hint ] [ { { DISTINCT | UNIQUE } | ALL } ] select_list FROM { table_reference [, table_reference ]... | join_clause | ( join_clause ) } [ where_clause ] [ hierarchical_query_clause ] [ group_by_clause ] [ HAVING condition ] [ model_clause ] [ { UNION [ ALL ] | INTERSECT | MINUS } (subquery) ] [ order_by_clause ][링크 : http://docs.oracle.com/cd/B19306_01/server.102/b14200/img_text/subquery.htm] |
hierarchical
[ START WITH condition ]CONNECT BY [ NOCYCLE ] condition[링크 : http://docs.oracle.com/cd/B19306_01/server.102/b14200/img_text/hierarchical_query_clause.htm] |
[ query_partition_clause ]{ outer_join_type JOIN | NATURAL [ outer_join_type ] JOIN } table_reference [ query_partition_clause ] [ ON condition | USING ( column [, column ]...) ][링크 : http://docs.oracle.com/cd/B19306_01/server.102/b14200/img_text/outer_join_clause.htm] inner join { [ INNER ] JOIN table_reference { ON condition | USING (column [, column ]...) } | { CROSS | NATURAL [ INNER ] } JOIN table_reference }[링크 : http://docs.oracle.com/cd/B19306_01/server.102/b14200/img_text/inner_cross_join_clause.htm] |
sql order by (0) | 2014.06.01 |
---|---|
sql outer join (0) | 2014.06.01 |
sql group by (0) | 2014.05.30 |
sql distinct (0) | 2014.05.29 |
oracle 대소문자 구분없이 검색하기 (0) | 2014.05.28 |
hp 2710p 배터리 관리 프로그램 (0) | 2014.06.26 |
---|---|
2710p / 2730p service manual (0) | 2014.06.24 |
오늘의 용던 탐방기 (0) | 2014.06.10 |
motv 크아앙 (0) | 2014.06.09 |
트리플 모니터 시스템 구축완료 (0) | 2014.06.07 |
이번에는 상급자로 신청!
이른 시간이지만 1등을 위해서 가장 앞에 서시는 분들도 있었... ㄷㄷㄷ
주황이에서 이제 파랭이
주최측에서 제공한 물은 미지근 해서 후다닥 먹고 출발전에 해치우는 것이 상책!
으아아 많다~(출발선 방향)
고급 다음의 중급쪽(뒤)
그리고 아침 식사로는 행주산성 국수 ㅋㅋ
잘 보면 선명한 탄 자국이 ㅋㅋㅋ
미니벨로 겟! (0) | 2014.09.14 |
---|---|
크랭크 종류 (0) | 2014.07.12 |
2014 하이 서울 자전거 대행진 복장 도착! (0) | 2014.06.07 |
2014 하이서울 자전거 대행진 신청! (0) | 2014.04.15 |
욕심으로 인한 희대의 잉여 아이템 획득 -_-a (0) | 2014.04.12 |