Computer Science, asked by niteenkhadse, 10 months ago

Write a program in small basic to print the series 1,8,27,64,....up to 10 terms.

Answers

Answered by snehadhiman77
0

Answer:

have a look at the answer .....

Explanation:

public class hookup

.

.

.

.

.

int i,j;

for (i=1; i less than equal to 10; i++);

{

j=i*i*i;

}

sopln(j+",");

}

}

Similar questions