Your program should use the following main function: //Put your includes, commen
ID: 3534031 • Letter: Y
Question
Your program should use the following main function:
//Put your includes, comments and function template here
int main()
{
cout << "Minimum between 1 and 3 is " << minValue(1,3) << endl;
cout << "Minimum between 1.5 and 0.3 is " << minValue(1.5, 0.3) << endl;
cout << "Minimum between 'A' and 'N' is " << minValue('A', 'N') << endl;
cout << "Minimum between "NBC" and "ABC" is "
<< minValue(string("NBC"), string ("ABC")) << endl;
}
Explanation / Answer
//here you go: http://ideone.com/0EHHjT
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.