84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
$cup Le calcul informatique est égal à 13. Comment le calculer ?
<?php
$x = 5;
$y = ++$x;
$z = $x + $y;
echo "{$z} </ br>";
echo "{$x} </br>";
echo $y;
?>
//Vous obtiendrez un signe plus pour $y = ++$x; ceci code Passer à l'avant et passer à l'arrière. Surveillez les changements. Vous comprendrez après y avoir réfléchi plusieurs fois
<?php $x = 5; $y = 6; $foo = $x++ + $x--; //$x和$y不变 $bar = ++$y + ++$x; //$x=6 $y=7 $cup = $x-- + $y--; //$x和$y不变 6+7=13
<?php
$x = 5;
$y = ++$x;
$z = $x + $y;
echo "{$z} </ br>";
echo "{$x} </br>";
echo $y;
?>
//Vous obtiendrez un signe plus pour $y = ++$x; ceci code Passer à l'avant et passer à l'arrière. Surveillez les changements. Vous comprendrez après y avoir réfléchi plusieurs fois