I want a loop program of 1 4 9 16 25....100 for class 7
Answers
Answered by
4
Answer:
its a python program
Explanation:
# program to print the given series
n=int(input("enter the limit"))
for i in range (1,n):
print(i**2,end=' ')
#HOPE IT HELPS YOU
PLEASE MARK BRAINLIEST
Answered by
2
a=int(input('enter any number'))
i=1
while i>=a:
print(i*i,end=' ')
i+=1
Similar questions