Give tge output:
CLS
n = 10
WHILE N>0
IF n MOD 2 - THEN
PRINT n
END IF
n = n-1
WEND
END
Answers
Answered by
0
It will give an error because the IF condition is not correct in Line 4.
Similar questions