Question: Q. Write a program whose input is a list of some number of positive, non-zero integers, and that outputs the smallest integer. A 0 ends
Q. Write a program whose input is a list of some number of positive, non-zero integers, and that outputs the smallest integer. A 0 ends the list and is not considered for the output. If the input is 6 99 3 5 0, the output is 3. You can assume at least one positive integer is input.
#include
using namespace std;
int main() {
(c++ please) (exact code please)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
