<span> 다음으로 이동 [1] </span> [전체 화면 미리보기] <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush: php; auto-links: false; "><?php // fib.php function fib($n) { $cur = 1; $prev = 0; for ($i = 0; $i < $n; $i++) { yield $cur; $temp = $cur; $cur = $prev + $cur; $prev = $temp; } } $fibs = fib(19); foreach ($fibs as $fib) { echo " " . $fib; } # php fib.php</pre><div class="contentsignin">로그인 후 복사</div></div> <style type="text/css"> .code_report{float:right} .code_report div{ float: left; margin-left: 5px; background: url("/img/ask-icon.gif") no-repeat; padding: 6px 0 6px 15px; padding-left: 15px; height: 16px;} .code_report a{ background: url("/img/ask-icon.gif") 0 -160px no-repeat;padding-left: 20px; line-height: 15px;height: 16px; color: #333; text-decoration: none; display:inline-block; zoom:1; vertical-align: middle;} .code_report em{ height: 28px; line-height:28px; width: 14px; display: inline-block; float: left; background: url("/img/ask-icon.gif") top right;} </style>