Write a program that first gets a list of integers from input. the input begins with an integer indicating the number of integers that follow then, get the last value from the input, which indicates a threshold. output all integers less than or equal to that last threshold value. assume that the list will always contain less than 20 integers. ex: if the input is 5 50 60 140 200 75 100 the output is 50 60 75 the 5 indicates that there are five integers in the list, namely 50, 60, 140, 200, and 75. the 100 indicates that the program should output all integers less than or equal to 100, so the program outputs 50, 60, and 75. for coding simplicity, follow every output value by a space, including the last one. such functionality is common on sites like amazon, where a user can filter results.

Solved
Show answers

Ask an AI advisor a question