El método mean(int x, int y) de la clase IntMath de Guava acepta dos parámetros x e y y calcula la media aritmética de ellos redondeada hacia el infinito negativo. Este método es resistente al desbordamiento.
Sintaxis:
public static int mean(int x, int y)
Parámetros : este método acepta dos parámetros x e y que son de tipo entero.
Valor devuelto: el método devuelve la media aritmética de x e y, redondeada hacia el infinito negativo.
Excepciones: el método no tiene ninguna excepción.
Ejemplo 1 :
// Java code to show implementation of // mean(int x, int y) method of Guava's // IntMath class import java.math.RoundingMode; import com.google.common.math.IntMath; class GFG { // Driver code public static void main(String args[]) { int x = 1542; int y = 421; // Using mean(int x, int y) // method of Guava's IntMath class int ans = IntMath.mean(x, y); // Displaying the result System.out.println("Mean of " + x + " and " + y + " is : " + ans); } }
Producción :
Mean of 1542 and 421 is : 981
Ejemplo 2:
// Java code to show implementation of // mean(int x, int y) method of Guava's // IntMath class import java.math.RoundingMode; import com.google.common.math.IntMath; class GFG { // Driver code public static void main(String args[]) { int x = 214; int y = 154; // Using mean(int x, int y) // method of Guava's IntMath class int ans = IntMath.mean(x, y); // Displaying the result System.out.println("Mean of " + x + " and " + y + " is : " + ans); } }
Producción :
Mean of 214 and 154 is : 184
Referencia:
https://google.github.io/guava/releases/20.0/api/docs/com/google/common/math/IntMath.html#mean-int-int-
Publicación traducida automáticamente
Artículo escrito por bansal_rtk_ y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA