(1)write a program for the following Series (0,7, 26, 63, ....N terms
Answers
Answered by
0
Answer:
for(i=0;i>0;i++)
{
m=(i*i*i)-1;
if(m<N)
Sopln(m+",");
else
break;
}
Explanation:
N=is input
It's only the logic part you will have to join the other lines too and I have written it by using java
Similar questions