/*Math.Max(x,y)
The Math.Max(x,y) method can be used to find the highest value of x and y:
Math.Max(5, 10);

La méthode Math.Max(x,y) peut être utilisée pour trouver la valeur la plus élevée de x et y :
*/

Math.Max(5, 10);
//10

//Math.Min(x,y)
//The Math.Min(x,y) method can be used to find the lowest value of of x and y:

//Math.Min(x,y)
//La méthode Math.Min(x,y) peut être utilisée pour trouver la valeur la plus basse de x et y :

Math.Min(5, 10);
//5

//Math.Sqrt(x)
//The Math.Sqrt(x) method returns the square root of x:

//La méthode Math.Sqrt(x) renvoie la racine carrée de x :

Math.Sqrt(64);
//8

//Math.Abs(x)
//The Math.Abs(x) method returns the absolute (positive) value of x:

//La méthode Math.Abs(x) renvoie la valeur absolue (positive) de x :

Math.Abs(-4.7);
//4.7

//Math.Round()
//Math.Round() rounds a number to the nearest whole number:

//Math.Round() arrondit un nombre au nombre entier le plus proche :

Math.Round(9.99);
//10