0
Could someone explain why the result is 21 for this I don't get it. Thank you.
function math($t){ if ($t==0) return 0; return $t+math($t-1); } echo math(6);
2 odpowiedzi
0
Makes sense I was thinking of it like an if statement that would break after one iteration thanks a lot