Skip to content

Commit f58daea

Browse files
author
jtovart
committed
#00 - Java - correcciones
1 parent f9ba374 commit f58daea

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

Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/java/llonardo798.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ public static void main(String[] args) {
3131
long distanciaTierraSol = 149600000000L; // 64 bits, rango de valores permitidos -9223372036854775808 hasta 9223372036854775807
3232
float precioProducto = 19.99f; // 32 bits, rango de valores permitidos 1.4e-045 hasta 3.4e+038
3333
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)
3535

3636
// 5. Imprimir en consola.
3737
System.out.println("Hola, Java!");
3838

3939
}
4040

41-
}
41+
}

0 commit comments

Comments
 (0)