“Entero.max_value” Código de respuesta

Java max int value

public class Test
{
   public static void main(String[] args)
   {
     System.out.println(Integer.MIN_VALUE);
     System.out.println(Integer.MAX_VALUE);
     System.out.println(Integer.MIN_VALUE - 1);
     System.out.println(Integer.MAX_VALUE + 1);
   }
}
theRealCb

Entero.max_value

public int x = Integer.MAX_VALUE;

System.out.println(x)

// prints out 2147483647. you can't go over this number
FunnyName

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código