

InterviewSolution
Saved Bookmarks
1. |
(1)write a program for the following Series (0,7, 26, 63, ....N terms |
Answer» Answer: for(i=0;i>0;i++) { m=(i*i*i)-1; if(m Sopln(m+","); else break; } 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 |
|