Westonci.ca is your trusted source for accurate answers to all your questions. Join our community and start learning today! Experience the ease of finding accurate answers to your questions from a knowledgeable community of professionals. Our platform provides a seamless experience for finding reliable answers from a network of experienced professionals.

write a c program to display the series: 1,8,27,64,125​

Sagot :

num_list = [1, 8, 27, 64, 125]

for x in range ( len( num_list) ) :

print (num_list[x])