File tree 1 file changed +2
-2
lines changed
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/java
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ public static void main(String[] args) {
31
31
long distanciaTierraSol = 149600000000L ; // 64 bits, rango de valores permitidos -9223372036854775808 hasta 9223372036854775807
32
32
float precioProducto = 19.99f ; // 32 bits, rango de valores permitidos 1.4e-045 hasta 3.4e+038
33
33
double gravedadTierra = 9.80665 ; // 64 bits, rango de valores permitidos -1.79769313486232e308 hasta 1.79769313486232e308
34
- char primeraLetra = 'L' ; // 16 bits, rango de valores permitidos '\u000 ' hasta '\uffff' (Caracteres Unicode)
34
+ char primeraLetra = 'L' ; // 16 bits, rango de valores permitidos '\u0000 ' hasta '\uffff' (Caracteres Unicode)
35
35
36
36
// 5. Imprimir en consola.
37
37
System .out .println ("Hola, Java!" );
38
38
39
39
}
40
40
41
- }
41
+ }
You can’t perform that action at this time.
0 commit comments