Computer Science, asked by NiharikaDeevasan, 11 months ago

Write a program to print the following series:
5,10,17,26,37,50

Answers

Answered by samhemdan129
0

Answer:

int i ,j;

For(i=2;i<=7;i++)

{

System.out.println(math.pow(i,2)+1);

}

Explanation:

Similar questions