php 斐波那契數列 遞歸 遞推

<?php header("content-type:text/html;charset=utf-8"); class ClassFbnq{ // 遞歸求和 public function fbnq($n){ if($n <= 0){ return 0; }else if($n == 1){ ret
相關文章
相關標籤/搜索