C
czcn
Unregistered / Unconfirmed
GUEST, unregistred user!
剛學寫程序時
if (abc = true) and (bcd mod 5) then
...
後來
if abc and (bcd mod 5) then
cde := true
else
cde := false;
現在
cde := (abc and (bcd mod 5));
if (abc = true) and (bcd mod 5) then
...
後來
if abc and (bcd mod 5) then
cde := true
else
cde := false;
現在
cde := (abc and (bcd mod 5));