We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a0ef402 + d0ed63e commit 66399d4Copy full SHA for 66399d4
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/java/maximilianofuentesalcocer-cibernético.java
@@ -0,0 +1,27 @@
1
+//Sitio web: java: https://www.java.com/es/
2
+
3
+//Comentario en una línea.
4
5
+/*
6
+Comentarios en
7
+varias
8
+líneas
9
+*/
10
11
+//varible.
12
+boolean soyNuevo = true;
13
+//constante.
14
+final int edadFalsa = 25;
15
16
+//Datos primitivos.
17
+int edad = 16;
18
+boolean estaEncendido = false;
19
+String nombre = "JUAN";
20
+double pi = 3.1416d;
21
+float flota = 5.23f;
22
+char caracter = "A"
23
+long largo = 16L;
24
25
+//imprimir variable.
26
+System.out.println("El estaEncendido es" + edadFalsa)
27
+System.out.println("El edadFalsa es" + estaEncendido
0 commit comments