Write a program that uses a function template called minimum to determine the smaller of two arguments. Test the program using integer, character and floatingpoint number arguments.
Write a program that uses a function template called minimum to determine the smaller of two arguments. Test the program using integer, character and floatingpoint number arguments.
Note the '\n' between each lines.
输入
1 2 a b 5.5 6.5
输出
Input two integer values: The smaller integer value is: 1 Input two characters: The smaller character value is: a Input two double values: The smaller double value is: 5.5