Computer Science, asked by maghaananthi, 3 months ago

write the program in java to display the fitst ten terms of the following series: 1, 9, 25, 49.

Answers

Answered by nikhithgandhivalaval
0

Answer:

mark me as brainlit and give a like, dont forget to follow

Explanation:

class series

{

public static void main()

{

int a=1,b=1;

for(int i=1;i<=10;i++,b++)

{

System.out.println(a+", ");

a+=b;

}

}

}

Answered by Anonymous
1

Answer:

Here is your answer mate

Explanation:

I hope it may help to

Attachments:
Similar questions