level 4
Cls
Print " CALCULATE PRIME"
Print ""
Goto @first
@error1 print "Error ! a>=3 ! Please input again !"
@first Print "Please imput the first number:";
Input a
If a<3 then goto @error1
Goto @last
@error2 print "Error ! b>a ! Please input again !"
@last Print "Please imput the last number:";
Input b
If b<=a then goto @error2
2012年09月12日 02点09分