January 7, 2020

WAP to display 2,4,6,8,......,10th term

(using DO - LOOP)
CLS
I = 2
DO WHILE I < = 20
PRINT I;
I = I + 2
LOOP
END

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.