Computer Science, asked by umakant943, 7 months ago

Print the series.

Please write the program I am giving one example:
0,3,8,15,........99
Class Series 1
{
public void display ( );
{
int i ;
for (i = 1; i <=10; i ++)
{
System.out.print( i * i -1 + ",");
}
}
}​

Attachments:

Answers

Answered by devanshv212
0

Answer:

not sure about this answer

Similar questions