Write different programs to print the given series: - 1 4 9 16 25 36………….. 100
Answers
Answered by
0
Explanation:
To print series from 1,4,9,16,25,36,49,64,81,100.
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
for(i=1;i<=10;i++)
{
printf("\n%d",i*i);
}
getch();
}
Answered by
0
Answer:
hello,
its using python
Explanation:
# program to print the given series
for i in range(1,11):
print((i**2),end=" ")
__________________________________
hope it helps you
please mark brainliest
@ItzSnowySecret07
Similar questions