#include using namespace std; //Functie pentru maximul dintre doua numere de tip int int myMax(int x, int y) { return (x > y) ? x : y; } //Functie pentru maximul dintre doua numere de tip double double myMax(double x, double y) { return (x > y) ? x : y; } //Functie pentru maximul dintre doua date de tip char char myMax(char x, char y) { return (x > y) ? x : y; }