Write a program in small basic to print the series 1,4,9,16,.... up to 10 terms
Answers
Answered by
0
Answer:
HEY THERE FRIEND.!!
HERE IS YOUR PROGRAM
#include <iostream>
#include<conio.h>
using namespace std;
int main()
{
int i;
for(i=1;i<=10;i++)
{
printf("\n%d",i*i);
}
getch();
}
I HOPE MY ANSWER HELPED YOU PLEASE MARK AS BRAINLIEST
Similar questions