Why is the result 25?
学不会网安
学不会网安 2022-04-13 18:23:12
0
2
1121

<?php$x = 5;$y = 6;

$paper = $x $x ;

$water = $y-- $x--;

echo $water $paper;

?>

I separately assigned the value first and then added, assigned the value first and then subtracted, added first and then assigned, and subtracted first and then assigned. Calculate them all separately and then add them up to calculate like this

学不会网安
学不会网安

reply all(1)
P粉728409985

paper=6 6;//After the end x=7

water=6 7;//After the end y=5, x=6

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template