necesito saber que significa cada linea del siguiente comando
Publicado por Toni (6 intervenciones) el 21/09/2019 02:18:25
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
int size = 27;
Strings name = "Fido";
Dog myDog = new Dog(name, size);
x=size - 5;
if (x < 15) myDog.bark(8);
while (x > 3) {
myDog.play() //Aqui esta tabulado
}
int[] numList = {2,4,6,8};
System.out.print("Hello");
System.out.print("Dog: " + name);
Strings num "8";
int z = Integer.parseInt(num);
try {
readTheFile("myFile.txt"); //Aqui esta tabulado
}
catch(FileNotFoundException ex) {
System.out.print("File not found."); //Aqui esta tabulado
}
Valora esta pregunta


0