Write the following functions:
a. bool all_the_same(double x, double y, double z), returning true if the arguments are all the same
b. bool all_different(double x, double y, double z), returning true if the arguments are all different
c. bool sorted(double x, double y, double z), returning true if the arguments are sorted, with the smallest one coming first
Provide a program that tests your functions.