Computer Science, asked by satyambehera137, 3 months ago

Write a program in small basic to print the series 1,4,9,16,.... up to 10 terms

Answers

Answered by darshini7
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