write a loop statement that initialises a loop variable x as 2,increments it by 2 in every iteration and continues the loop till x is less than 15
Answers
Answered by
4
Answer:
The program in python goes like:
__________________________
x=2
while x<15:
print(x)
x+=2
___________________________
Answered by
2
Answer:
for(x=2; x+=2;x<15)
Similar questions
Science,
2 months ago
English,
2 months ago
Computer Science,
5 months ago
Math,
11 months ago
Math,
11 months ago