Computer Science, asked by mubbi29, 1 year ago

write a program to display even numbers between 1 to 50 using loop

Answers

Answered by aakarshgupta31
4
I hope that this helps
Attachments:
Answered by Anonymous
6
Here's your answer:
Q) REM Program to print even numbers from 1 to 50.
Ans. FOR I = 2 TO 50 STEP 2
PRINT I
NEXT I

(Here I stands for Initial Value)
Hope it helps you.
Please mark as the brainliest.
Similar questions