WARNING:
JavaScript is turned OFF. None of the links on this concept map will
work until it is reactivated.
If you need help turning JavaScript On, click here.
Este Cmap, tiene información relacionada con: Clase Math, Public se puede llamar desde cualquier sitio, Constructor de clase es Privado, funciones de todos los Lenguajes, Clase Math representa la Librería matemática de Java, Static para no inicializarla, Clase Math sin embargo es Public, Funciones Matemáticas ejemplos class Matematica { public static void main( String args[] ) { int a; double rand,b,c; float max; rand = Math.random(); a = Math.abs( -123 ); b = Math.round( 123.567 ); c = Math.pow( 2,4 ); max = Math.max( (float)1e10,(float)3e9 ); System.out.println( rand ); System.out.println( a ); System.out.println( b ); System.out.println( c ); System.out.println( max ); } }, Privado no se crea instancias de la clase, importar la clase se obtiene Math.abs( x ) -->para int, long, float y double Math.sin( double ) Math.cos( double ) Math.tan( double ) Math.asin( double ) Math.acos( double ) Math.atan( double ) Math.atan2( double,double ) Math.exp( double ) Math.log( double ) Math.sqrt( double ) Math.ceil( double ) Math.floor( double ) Math.rint( double ) Math.pow( a,b ) Math.round( x )-->para double y float Math.random() -->devuelve un double Math.max( a,b )-->para int, long, float y double Math.min( a,b )-->para int, long, float y double Math.E -->para la base exponencial Math.PI -->para PI, Funciones Matemáticas al importar la clase, Clase Math su Constructor de clase, Clase Math contiene las funciones de, Clase Math posee Funciones Matemáticas, Clase Math sin embargo es Static