Computer Science, asked by swarnalee, 11 months ago

Display the series of 1,8,27 upto 1000. Small basic program.​

Answers

Answered by utkarshmishra9819
0

Answer:

class prog

{void mmain(){

for (int i=1;(i*i*i)<=1000;i++)

{

System.out.print((i*i*i)+" " );}}}

Similar questions