Write a program in python to print the square of numbers in range. Class 8
Answers
Answered by
4
Answer:
n=int(input ("enter the no.upto which you want to do sqaure:"))
for i in range (1,n):
square=i*i
print (square)
Similar questions