Computer Science, asked by sunitazirange, 11 months ago

Write a java program to create full series upto 10 terms and also print the value of T
T=1+4+9+16........
as (1)^2 or (2)^2.....like that

Answers

Answered by pexid
0

Answer:

Explanation:

int num=1, pow;

  while(num<=10)

{  

pow= num*num;  

System.out.println(" "+ pow);  

num++;

}

Similar questions