Convert the following while loop into corresponding for loop
A=400
while (A >100):
print (A*A)
A= A-2
if(A == 300):
break
Answers
Answered by
1
Answer:
A = 400
for A in range(101,300):
print(A*A)
A = A-2
Similar questions
Accountancy,
1 month ago
Math,
1 month ago
Computer Science,
3 months ago
English,
9 months ago
Math,
9 months ago