Welcome to Westonci.ca, where finding answers to your questions is made simple by our community of experts. Connect with a community of professionals ready to help you find accurate solutions to your questions quickly and efficiently. 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])