批改状态:未批改
老师批语:
<?php
function add($n,$m){
while($m != 0){
$t = $n^$m;
$n = ($n & $m)<<1;
$m = $t;
}
return $n;
}
?>
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号