Computer Science, asked by harshitmaloo88, 8 hours ago

Write a program to generate the first 'n' terms of the following series 121, 225, 361,...

Answers

Answered by yashdevsingh24
0

Answer:

I don't know ask to you teacher beta harshit

Answered by akumawat1402
1

#include<iostream>

using namespace std;

int main()

{

 int n,i,sq;

 int x=11;

 cin>>n;

 while(i<n)

 {

   sq=x*x;

   cout<<sq<<" ";

   x=x+4;

   i++;

 }

}

Similar questions