디시인사이드 갤러리

갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

지전 프로그래머님들 도와주세여 ㅡㅡ;

ㅁㄴㅇ(116.42) 2011.11.22 21:49:42
조회 112 추천 0 댓글 3

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; font-family: \'Courier New\', Courier, monospace; background-color: rgb(255, 255, 255); color: rgb(51, 51, 51); font-size: 12px; line-height: 19px; text-align: left; ">저 과제 하다가 소스코드라고 이걸 찾았는데요 </ul>

   이걸 어딘가에 넣어서 실행시킬 수 있나요?-_-;

   계단식 계산을 해야 해서 하나 하나 하면 끝이 안보일거 같아요 ㅠㅠ
<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; font-family: \'Courier New\', Courier, monospace; background-color: rgb(255, 255, 255); color: rgb(51, 51, 51); font-size: 12px; line-height: 19px; text-align: left; ">
</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; font-family: \'Courier New\', Courier, monospace; background-color: rgb(255, 255, 255); color: rgb(51, 51, 51); font-size: 12px; line-height: 19px; text-align: left; ">
</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; font-family: \'Courier New\', Courier, monospace; background-color: rgb(255, 255, 255); color: rgb(51, 51, 51); font-size: 12px; line-height: 19px; text-align: left; ">
</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; font-family: \'Courier New\', Courier, monospace; background-color: rgb(255, 255, 255); color: rgb(51, 51, 51); font-size: 12px; line-height: 19px; text-align: left; ">tell application “Microsoft Excel”
activate worksheet “Sheet1″
set N_step_count to 1
set N_branch_count to 3
set N_node_count to 0

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set N to the text returned of (display dialog “enter the number of tree branches” default answer “5″) as integer
display dialog “Trinomial Step Count Set to ” & N</ul>

(* start node and bringing steps to +1*)

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set Start_price to the text returned of (display dialog “Enter Start Price” default answer “5″) as number
display dialog “Start Price ” & Start_price</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set Strike_price to the text returned of (display dialog “Enter Strike Price” default answer “5″) as number
display dialog “Strike Price ” & Strike_price</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set Option_type to the text returned of (display dialog “Option type” default answer “Call”) as text
display dialog “Option type ” & Option_type</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set Risk_free_rate to the text returned of (display dialog “Risk free rate” default answer “%”) as number
display dialog “Risk free rate ” & Risk_free_rate</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set Security_yield to the text returned of (display dialog “Security yield” default answer “%”) as number
display dialog “Security yield ” & Security_yield</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set Volatility to the text returned of (display dialog “Volatility” default answer “%”) as number
display dialog “Volatility ” & Volatility</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set Time_to_maturity to the text returned of (display dialog “Days to Maturity” default answer “100″) as integer
display dialog “Days to Maturity ” & Time_to_maturity</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set trinomial_parameters to {“Trinomial Steps”, “Start_price”, “Strike_price”, “Option type”, “Risk free rate”, “Security yield”, “Volatility”, “Days to Maturity”}</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set trinomial_user_inputs to {N, Start_price, Strike_price, Option_type, (Risk_free_rate / 100), (Security_yield / 100), (Volatility / 100), Time_to_maturity}</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set trinomial_cell_reference to {“$B$1″, “$B$2″, “$B$3″, “$B$4″, “$B$5″, “$B$6″, “$B$7″, “$B$8″}</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set trinomial_variable to {“u”, “d”, “p(u)”, “p(d)”, “p(d)”}</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set trinomial_formulas to {“=EXP(” & (item 7 of trinomial_cell_reference) & “*((2*(” & (item 8 of trinomial_cell_reference) & “/365)/” & (item 1 of trinomial_cell_reference) & “)^(0.5)))”, ¬
“=1/EXP(” & (item 7 of trinomial_cell_reference) & “*((2*(” & (item 8 of trinomial_cell_reference) & “/365)/” & (item 1 of trinomial_cell_reference) & “)^(0.5)))”, ¬
“=((EXP((” & (item 5 of trinomial_cell_reference) & “-” & (item 6 of trinomial_cell_reference) & “)*(((” & (item 8 of trinomial_cell_reference) & “)/365/” & (item 1 of trinomial_cell_reference) & “)*(0.5)))-EXP(-” & (item 7 of trinomial_cell_reference) & “*((((” & (item 8 of trinomial_cell_reference) & “)/365/” & (item 1 of trinomial_cell_reference) & “)*(0.5))^0.5)))/(EXP(” & (item 7 of trinomial_cell_reference) & “*((((” & (item 8 of trinomial_cell_reference) & “)/365/” & N & “)*(0.5))^0.5))-EXP(-” & (item 7 of trinomial_cell_reference) & “*((((” & (item 8 of trinomial_cell_reference) & “)/365/” & (item 1 of trinomial_cell_reference) & “)*(0.5))^0.5))))^2″, ¬
“=((EXP(” & (item 7 of trinomial_cell_reference) & “*((((” & (item 8 of trinomial_cell_reference) & “)/365/” & (item 1 of trinomial_cell_reference) & “)*(0.5))^0.5))-EXP((” & (item 5 of trinomial_cell_reference) & “-” & (item 6 of trinomial_cell_reference) & “)*(((” & (item 8 of trinomial_cell_reference) & “)/365/” & (item 1 of trinomial_cell_reference) & “)*(0.5))))/(EXP(” & (item 7 of trinomial_cell_reference) & “*((((” & (item 8 of trinomial_cell_reference) & “)/365/” & (item 1 of trinomial_cell_reference) & “)*(0.5))^0.5))-EXP(-” & (item 7 of trinomial_cell_reference) & “*((((” & (item 8 of trinomial_cell_reference) & “)/365/” & (item 1 of trinomial_cell_reference) & “)*(0.5))^0.5))))^2″, ¬
“=1-E3-E4″}</ul>

set row_counter to 1

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">repeat with i in trinomial_parameters

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set value of cell (get address of cell row_counter of column 1) of worksheet “Sheet1″ to (item row_counter of trinomial_parameters)
set value of cell (get address of cell row_counter of column 2) of worksheet “Sheet1″ to (item row_counter of trinomial_user_inputs)
set row_counter to row_counter + 1</ul>

end repeat

</ul>

set row_counter to 1

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">repeat with i in trinomial_variable

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set value of cell (get address of cell row_counter of column 4) of worksheet “Sheet1″ to (item row_counter of trinomial_variable)
set value of cell (get address of cell row_counter of column 5) of worksheet “Sheet1″ to (item row_counter of trinomial_formulas)
set row_counter to row_counter + 1</ul>

end repeat

</ul>

set N to N + 1

if Option_type = “Call” then

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set Option_price to {“=MAX(” & (get value of cell (get address of cell 3 of column 5)) & “*”, ¬
“+” & (get value of cell (get address of cell 4 of column 5)) & “*”, ¬
“+” & (get value of cell (get address of cell 5 of column 5)) & “*”, ¬
“,”, ¬
“-” & Strike_price}</ul>

else

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set Option_price to {“=MAX(” & (get value of cell (get address of cell 3 of column 5)) & “*”, ¬
“+” & (get value of cell (get address of cell 4 of column 5)) & “*”, ¬
“+” & (get value of cell (get address of cell 5 of column 5)) & “*”, ¬
“,-”, ¬
“+” & Strike_price}</ul>

end if

repeat N times

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set value of cell (get address of cell (1 + (N) * 3) of column N_step_count) of worksheet “Sheet1″ to “=” & (item 2 of trinomial_cell_reference)
set value of cell (get address of cell (2 + (N) * 3) of column N_step_count) of worksheet “Sheet1″ to ¬
((get item 1 of Option_price) & (get address of cell ((N) * 3 – 1) of column (N_step_count + 2)) & ¬
(get item 2 of Option_price) & (get address of cell ((N) * 3 + 5) of column (N_step_count + 2)) & ¬
(get item 3 of Option_price) & (get address of cell (2 + (N) * 3) of column (N_step_count + 2)) & ¬
(get item 4 of Option_price) & (get address of cell (1 + (N) * 3) of column N_step_count) & ¬
(get item 5 of Option_price))</ul><ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; background-color: rgb(238, 238, 238); list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">repeat N_node_count times

<ul class="code" style="padding-top: 0px; padding-right: 1em; padding-bottom: 0px; padding-left: 1em; margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; list-style-image: url(http://www.24-something.com/wp-content/themes/mistylook/img/bullet.png); ">set value of cell (get address of cell (1 + (N) * 3 – (N_branch_count)) of column N_step_count) of worksheet “Sheet1″ to ¬
“=” & ((get address of cell ((N) * 3 – (N_branch_count) + 4) of column (N_step_count – 2))) ¬
& “*” & ¬
((get address of cell 1 of column 5))
set value of cell (get address of cell (2 + (N) * 3 – (N_branch_count)) of column N_step_count) of worksheet “Sheet1″ to ¬
((get item 1 of Option_price) & (get address of cell ((N) * 3 – (N_branch_count) – 1) of column (N_step_count + 2)) & ¬
(get item 2 of Option_price) & (get address of cell ((N) * 3 – (N_branch_count) + 5) of column (N_step_count + 2)) & ¬
(get item 3 of Option_price) & (get address of cell (2 + (N) * 3 – (N_branch_count)) of column (N_step_count + 2)) & ¬
(get item 4 of Option_price) & (get address of cell (1 + (N) * 3 – (N_branch_count)) of column N_step_count) & ¬
(get item 5 of Option_price))
set value of cell (get address of cell (1 + (N) * 3 + (N_branch_count)) of column N_step_count) of worksheet “Sheet1″ to ¬
“=” & ((get address of cell ((N) * 3 + (N_branch_count) – 2) of column (N_step_count – 2))) ¬
& “*” & ¬
((get address of cell 2 of column 5))
set value of cell (get address of cell (2 + (N) * 3 + (N_branch_count)) of column N_step_count) of worksheet “Sheet1″ to ¬
((get item 1 of Option_price) & (get address of cell ((N) * 3 + (N_branch_count) – 1) of column (N_step_count + 2)) & ¬
(get item 2 of Option_price) & (get address of cell ((N) * 3 + (N_branch_count) + 5) of column (N_step_count + 2)) & ¬
(get item 3 of Option_price) & (get address of cell (2 + (N) * 3 + (N_branch_count)) of column (N_step_count + 2)) & ¬
(get item 4 of Option_price) & (get address of cell (1 + (N) * 3 + (N_branch_count)) of column N_step_count) & ¬
(get item 5 of Option_price))
set N_branch_count to N_branch_count + 3
end repeat</ul>

set N_branch_count to 3
set N_step_count to N_step_count + 2
set N_node_count to N_node_count + 1

</ul>

end repeat
end tell

</ul>



추천 비추천

0

고정닉 0

0

댓글 영역

전체 댓글 0
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 뛰어난 운동 신경으로 남자와 싸워도 이길 것 같은 여자 스타는? 운영자 25/11/24 - -
AD 따뜻한 겨울나기! 방한용품 SALE 운영자 25/11/27 - -
290315 재귀함수 도와줘 횽들 ㅠㅠ [13] 으학(125.142) 11.11.24 76 0
290314 횽들 어느수준이 되야 진짜 프로그래밍을 할 수 있을까? [1] 이런썩을갤로그로 이동합니다. 11.11.24 72 0
290313 링크드 리스트에 정확한 개념좀... 무엇 하는데 사용? [16] DMW(119.71) 11.11.24 138 0
290312 게시판을 서버에 연동하려고하는데 [2] 三didas갤로그로 이동합니다. 11.11.24 48 0
290310 원래 이클립스랑 톰캣 연동하면 이리 불편하냐? [4] (203.237) 11.11.24 72 0
290309 아 진짴ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ [2] -ㅂ-(183.102) 11.11.24 62 0
290308 겨울에 자주씻으면 안좋다는게 트루인가여? Lover♥갤로그로 이동합니다. 11.11.24 129 0
290307 명동 나갔다가 시위대 만났는 [3] 이모군(121.124) 11.11.24 48 0
290306 C언어에서 시간관련 함수중에 정밀하게 쓸 수 있는 함수가 있나요? [2] WS(116.34) 11.11.24 142 0
290305 비베 질문좀 할게요!! Sayrin갤로그로 이동합니다. 11.11.24 30 0
290304 네트워크 그림에서 설명좀 해주라 [1] ㅈㅈㅈㅈ(118.47) 11.11.24 63 0
290303 집에서 취미로 8051이나 만져 보려고 하는데 윈도우 7이라.... [1] 거칠게갤로그로 이동합니다. 11.11.24 74 0
290301 집에서 프로그램 공부하다가 궁금한건데 회사에서는 무슨 프로그램으로 개발하 [1] 리눅슽(121.186) 11.11.24 60 0
290300 선생님들 JAVA 기초 질문이 있습니다. [2] 요지경(222.117) 11.11.24 57 0
290298 동등성과 동일성 질문. [1] 로이리(61.72) 11.11.24 69 0
290297 dot [1] ㅋㄱ(183.96) 11.11.24 31 0
290296 어느 교수님의 말 [4] 마타버터갤로그로 이동합니다. 11.11.24 125 0
290295 이거는 도스에서 어떻게 입력하란 말임미까? [2] 야 기분좋다(121.150) 11.11.24 58 0
290294 형들 c언어 열혈 책 사서 인강들으면서 공부할려고해 [1] c언어입문자(118.129) 11.11.24 117 0
290292 뻔뻔한 과제구걸의 최후 [2] 三didas갤로그로 이동합니다. 11.11.24 124 0
290291 게이들아 mysql 필드 이름 제한 조건 같은거 어디서 찾아보냐 [1] qwe(115.161) 11.11.24 26 0
290290 구로 디지털단지 근처에 대순애들 왜이래 많냐? [9] 크항(121.140) 11.11.24 246 0
290289 프갤 여신은 없나? [1] Lover♥갤로그로 이동합니다. 11.11.24 91 0
290288 형들 안드로이드 퍼즐 구상중인데 [3] 뇌지랄갤로그로 이동합니다. 11.11.24 92 0
290287 안배운거 써서 과제로 제출하면 감점일까? [4] Aven(115.23) 11.11.24 92 0
290284 며칠전에 관둔 존나 조오옷 같은 회사. [2] ㅇㅇ(61.43) 11.11.24 124 1
290282 머리가 빠져온다~ 가자~ [4] Lumberjack갤로그로 이동합니다. 11.11.24 63 0
290281 123123 123123(1.226) 11.11.24 17 0
290279 아스횽도 이렇게 게이가 된거야? [7] 21C노가다갤로그로 이동합니다. 11.11.24 124 0
290278 GCC 컴파일 옵션에서... [1] ByunJa갤로그로 이동합니다. 11.11.24 75 0
290273 아이티 노조가 없는이유. [3] 이메지네이션(211.187) 11.11.24 102 0
290272 스티븐 호킹의 말하는 지구의 화성 colonization 가능할까.swf [9] Stan(220.244) 11.11.24 90 0
290271 이렇게 날씨가 추울땐 뭐다? [1] System32갤로그로 이동합니다. 11.11.24 67 0
290270 아 본의 아니게 이직을 2번 하게됐는데, [2] 이메지네이션(211.187) 11.11.24 105 0
290264 이제 중1 올라가는데요, 지금 시작해도 안늦나요? [7] 초딩6(59.13) 11.11.24 104 0
290263 아이티 경력 1년 썰 푼다.jyp [13] 므해?갤로그로 이동합니다. 11.11.24 380 0
290262 플밍을 배우기 앞서 [1] Adelposs갤로그로 이동합니다. 11.11.24 53 0
290260 안정적으로 돈벌고 칭송도 받을 수 있는 직업 [1] 거칠게갤로그로 이동합니다. 11.11.24 120 0
290259 옵티머스 LTE 너무좋아요 [5] Energy Drink갤로그로 이동합니다. 11.11.24 83 1
290258 전효성 같은 마누라 얻고 싶으면.. [2] 므해?갤로그로 이동합니다. 11.11.24 144 0
290256 아악 곽벌레가 나타났다!!!!! 여태 딴날당 알바 하다 온듯 [3] 거칠게갤로그로 이동합니다. 11.11.24 67 0
290253 php는 진짜 좋은거 같다 ㅂㅂ(115.161) 11.11.24 90 0
290252 아이티 업계 안가야 되는 이유 [6] 므해?갤로그로 이동합니다. 11.11.24 256 0
290250 요즘 집에서 생존경제라는 강좌를 보고 있는데 쩐다. [1] 거칠게갤로그로 이동합니다. 11.11.24 100 0
290249 이거 왜그런지 아는 개럴 잇냐 없겟지 [6] 늅튭(202.30) 11.11.24 61 0
290248 회사에서 만약에 지방으로 내려가야겟다라고 하면 [5] 좋은아버지갤로그로 이동합니다. 11.11.24 105 0
290246 질문좀 하러 왔습니다. [1] 미향갤로그로 이동합니다. 11.11.24 45 0
290244 오늘은 좀 바뻤다. 시밤 웹은 새로운 세계라 조낸 배울께 많군 거칠게갤로그로 이동합니다. 11.11.24 52 0
290243 계좌제 말고 전액지원으로 c#, asp.net 교육시켜주는 곳 있음? [1] insight갤로그로 이동합니다. 11.11.24 67 0
290242 궁금한 것이 있는데 [3] 좋은아버지갤로그로 이동합니다. 11.11.24 54 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

디시미디어

디시이슈

1/2