-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
52 lines (45 loc) · 1.35 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
public class Main {
public static void main(String[] args) {
float numeroIf = -0.45f;
if (numeroIf != 0) {
if (numeroIf > 0) {
System.out.println("positivo");
}
if (numeroIf < 0) {
System.out.println("negativo");
}
}else {
System.out.println("cero");
}
int numeroWhile = 0;
while (numeroWhile < 3){
System.out.println("ejecucion número");
System.out.println(numeroWhile);
numeroWhile++;
}
do{
System.out.println("ejecucion de doWhile");
numeroWhile++;
}while (numeroWhile == 3);
for(int numeroFor = 0; numeroFor <= 3; numeroFor++){
System.out.println(numeroFor);
}
var estacion = "OpenBoot-camp";
switch (estacion){
case "invierno":
System.out.println("invierno");
break;
case "primavera":
System.out.println("primavera");
break;
case "verano":
System.out.println("verano");
break;
case "otoño":
System.out.println("otoño");
break;
default:
System.out.println("no es una estacion");
}
}
}