Respuesta :
Answer:
I've implemented this program using python
userinput = int(input("Length: "))
mylist = []
mylist.append(userinput)
for i in range(1,userinput+1):
userinp = int(input("Input: "))
mylist.append(userinp)
smallval = mylist[1]
for i in range(1,len(mylist)):
if smallval > mylist[i]:
smallval = mylist[i]
for i in range(1,len(mylist)):
mylist[i] = mylist[i] - smallval
for i in range(1,len(mylist)):
print(mylist[i],end=' ')
Explanation:
I've added the full source program as an attachment where I used comments to explain difficult lines

The program written in python 3 deducts the least from a list of user given integers and prints the output. The program goes thus :
len_input = int(input())
#the number of inputs the user wishes to supply
vals = []
#initialize an empty list to accept the inputs
for i in range(1, len_input +1):
#use a loop to accept the user inputs
num = int(input())
#allow users to take in the inputs
vals.append(num)
#append each value to the list
least =min(vals)
#using the min function, obtain the lowest value from the list
output_vals = []
#initialize an empty list to hold the normalized values
for i in range(len_input):
#loop using a for loop
diff = vals[i] - least
#deduct the minimum value from each element in the list
output_vals.append(diff)
#append the values to the new list.
print(output_vals)
#display the output
A sample run of the program and the script is attached.
Learn more :https://brainly.com/question/14276852


Otras preguntas
