A. 兩種,for 循環(huán)和 while 循環(huán) B. 四種,for 循環(huán)、while 循環(huán)、do...while 循環(huán)以及 loop...until 循環(huán) C. 一種,for 循環(huán)
A. if =! 5 then B. if <>5 C. if (i <> 5) D. if (i != 5)
A. if (i==5) B. if i=5 then C. if i=5 D. if i==5 then