Pleas give the answer fast
Attachments:
Answers
Answered by
0
Answer:
1.
count=0
DO WHILE count < 10
PRINT "Hello World"
count = count + 1
LOOP
2.
PRINT "Enter the value for N"
INPUT n
remainder = n MOD 2
IF remainder = 0 THEN
PRINT "EVEN"
ELSE PRINT "ODD"
END IF
Explanation:
Similar questions