190k views
1 vote
Write a program with a "function" named "getMinFromInput()" that reads a list of integers from the keyboard and returns the smallest "positive" number entered. For example, if user enters 0 3 -2 5 8 1, it should return 1. The reading stops when 999 is entered.

Your main function should call this getMinFromInput() function and print out the smallest "positive" number. c++

#include
using namespace std;

int main() {

/* Type your code here. */

return 0;
}

User WojonsTech
by
4.2k points

1 Answer

3 votes

Answer:

URL where the media can be found;

the description of the type of media used in the example;

an analysis of the media piece in relation to the best practices discussed in this lesson, which answers these questions:

Does the piece illustrate best practices?

Which are best represented?

What point do you feel the company

User Maxheld
by
4.3k points