18
Jan
php faktöriyel hesaplama
öğrencilere ve yeni öğrenenlere basit bir örnek
<?php
function faktor($i){
if($i != 0) return $i * faktor($i-1);
return 1;
}
echo faktor(5);?>
Denemek için http://codepad.org/EMjpGZ4y
Tags: Örnek, Faktöriyel, phpTags: Örnek, Faktöriyel, php