204k views
3 votes
Write a program to enter 30 integer numbers into an array and display​

User Sskoko
by
4.2k points

2 Answers

5 votes

Answer:

Step-by-step explanation:

Python:

numberlist = []

for i in range(0, 29):

a = input("Enter a number: ")

numberlist[i] = a

print(*meh, sep = "\\")

User Mattia Nocerino
by
3.7k points
5 votes

Answer:

i764

Step-by-step explanation:

User Evidica
by
4.5k points