Computer Science, asked by shilpi29s39, 9 months ago

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

Answers

Answered by adityaraaj62
6

Explanation:

1 ka cube=1

2 ka cube=8

3 ka cube=27

4 ka cube=64

5 ka cube=125

6 ka cube=216

7 ka cube=343

8 ka cube=512

9 ka cube=729

10 ka cube=1000

I hope it's helpful for you.

Answered by sswaraj04
2

Answer:

For i=1 To 10

 textWindow.Write(i*i*i+" ")

Endfor

Explanation:

That's simple

Just print cube of number from 1 to 10

Hope it helps :-)

Similar questions