1. Write a program in Small Basic to display even numbers from 1 to 100 and also
change the color of the Graphics Window to Pink and display the text on Graphics
Window Generating Even Numbers".
Answers
Answered by
0
Answer:
I have written in python.
Explanation:
for num in range(1 , 100):
if num%2==0:
print (num)
num=num+1
Similar questions