-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClase Java 3.java
More file actions
132 lines (68 loc) · 2.7 KB
/
Clase Java 3.java
File metadata and controls
132 lines (68 loc) · 2.7 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package clase.java.pkg3;
public class ClaseJava3 {
public static void main(String[] args) {
//El if else es igual que en C.
int i = 19;
int r = 20;
if (i > r){
System.out.println("i es mayor que r.");
}else{
System.out.println("i es menor que r.");
}
System.out.println();
//El switch es igual que en C.
char c = 'a';
switch(c){
case 'a':
System.out.println("Es la letra a.");
break;
case 'b':
System.out.println("Es la letra b.");
break;
case 'c':
System.out.println("Es la letra c.");
break;
default:
System.out.println("No es ni a, ni b, ni c");
break;
}
System.out.println("\n");
//El while es igual que en C.
int h = 0;
while (h < 11) {
System.out.println(h);
h++;
}
System.out.println("\n");
//El for es igual que en C.
int k;
for (k = 0;k<10;k++){
System.out.println(k);
}
System.out.println("\n");
for (int l = 0; l < 10; l++) {
if (l == 4) {
break; //Deja de ejecutar codigo
}
System.out.println(l);
}
System.out.println("\n");
for (int l = 0; l < 10; l++) {
if (l == 4) {
continue; //Pega un salto
}
System.out.println(l);
}
System.out.println("\n");
//Arrays
String[] coches; //String vacio
String[] motos = {"Yamaha", "Honda", "Suzuki", "Kawasaki", "Ducati"}; //String con contenido establecido
motos[0] = "BMW";
System.out.println(motos[0]);
System.out.println();
for (i = 0; i < motos.length; i++) {
System.out.println(motos[i]);
}
System.out.println("\nEl tamano de motos es: " + motos.length);
}
}