Answer:
Here's the completed code to find the smallest value out of the given inputs:
#include <iostream>
using namespace std;
int main() {
int numInput;
int inputValue;
int smallestVal;
int i;
cin >> numInput;
// Read in the first value and assume it's the smallest
cin >> smallestVal;
cout << "Value read: " << smallestVal << endl;
// Loop through the remaining inputs
for (i = 1; i < numInput; i++) {
cin >> inputValue;
cout << "Value read: " << inputValue << endl;
// If the current input is smaller than the smallest so far, update smallestVal
if (inputValue < smallestVal) {
smallestVal = inputValue;
}
}
// Output the smallest value
cout << "Smallest: " << smallestVal << endl;
return 0;
}
Step-by-step explanation:
The program reads in the number of inputs to expect, then reads in the first input and assumes it's the smallest. It then loops through the remaining inputs, reading them in one at a time, outputting each value as it goes. If the current input is smaller than the smallest so far, it updates the value of smallestVal. Finally, it outputs the smallest value found.