Computer Science, asked by JoshColl, 1 month ago

algorithm to read 100 numbers then display the largest.

Answers

Answered by 004tranquil
0

Answer:

please specify the language you want the answer in.

Explanation:

I will provide for python:

```

l1=[]

for i in range (0,100):

x=int(input("enter the number"))

l1.append(x)

y=0

for j in l1:

if j>j-1:

y=j

else:

y=j-1

```

Similar questions