Computer Science, asked by sahildas9021, 5 months ago

Write a Program to print the following series.

1 4 9 16 .......... 100​

Answers

Answered by satyamkumar5428
0

I = 1

s = I*I

print (s)

I+=1

Explanation:

Hit the mark as Brainliest button below and follow me for more accurate answers .

Answered by adityakumaristhebest
1

Answer:

while I<100:

print( I )

I+=2

Explanation:

please mark me as brainliest

Similar questions