What is even in the chapter? We can't really say anything before knowing that. It's probably just asking you to have some nested if's. Even perhaps something like:
..etc.C++ Code:
int smallest = a; if (b < a) smallest = b; if (c < b) smallest = c; if (c < a) smallest = c;
chem




Reply With Quote