<?php
$all = array();
enter code here
for($i = 1 ; $i <= 100 ; $i++){
$ric=sqrt($i);
if(is_int($ric) == true){
$all[] = $i;
}
}
$max = max($all);
$min = min($all);
echo "MIN=".$min."<br>";
echo "MAX=".$max;
你好,我改变了我的代码,而不是if((int)$ric - $ric == 0)我写这个if(is_int($ric) == true),但它让我错了。问题是什么?请帮帮我。
呼唤远方