abstrakt:function add( $a, $b){$c = a + b;return $c;}定義兩個變量,實(shí)現(xiàn)了他們想加的功能。
function add( $a, $b)
{
$c = a + b;
return $c;
}
定義兩個變量,實(shí)現(xiàn)了他們想加的功能。
Korrigierender Lehrer:西門大官人Korrekturzeit:2019-04-08 09:59:17
Zusammenfassung des Lehrers:$c = $a+$b;應(yīng)該這樣。運(yùn)行一下看看是否有問題