Computer Science, asked by hhhhyyrfft, 11 months ago

Find the series upto 10th term:
1,4,9,16.........................................

Answers

Answered by BrainlyYuVa
41

Find the series upto 10th term:

1,4,9,16.........................................

⭐Solution ⭐

given series

1,4,9,16......

(1) 4-1=3

(2). 9-4=5

(3) 16-9=7

similarly , we can find next term

so, will be

(4). 25-16= 9

(5). 36-25= 11

(6). 49-36 = 13.

(7). 62-49= 15

(8). 79-62= 17

(9). 98-79= 19

(10). 119-98= 21

So,

term will be

1,4,9,16,25,36,49,62,79,98,119

Thats Answer

Marks Brainliest.

Answered by Anonymous
5

import java,util.*;

public class Series

{

public static void main(String args[])

{

Scanner in= new Scanner(System.in);

int a,i;

for(i=1;i<=10;i++)

{

a=Math.pow(i,2);

System.out.println("Display the series"+a);

}

}

}

Similar questions