-4

こんにちは、このように書く代わりに pow を使用できますか?

                    $round1 = $max / 2;
                    $round2 = $round1 + ($max / 2 / 2);
                    $round3 = $round2 + ($max / 2 / 2 / 2);
                    $round4 = $round3 + ($max / 2 / 2 / 2 / 2);
                    $round5 ...
                    $final = $max - 1;
                    $third = $max;

手伝ってくれてありがとう!

4

2 に答える 2

-1

これを試して、

 $rount[0]=0;
 for($i=1;$1<upto n rounds;$i++)
 {
   $rount[i]=$round[i-1]+($max/(2*i));
 }
于 2013-08-12T12:27:28.970 に答える