Skip to content

Commit f1802cf

Browse files
authored
Add files via upload
1 parent 23cdfac commit f1802cf

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

CasaComInformacao/Garagem.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package CasaComInformacao;
2+
3+
public class Garagem {
4+
int numeroDeCarros;
5+
boolean coberta;
6+
Porta porta;
7+
8+
public Garagem() {
9+
10+
}
11+
12+
public Garagem(int numeroDeCarros, boolean coberta, Porta porta) {
13+
this.numeroDeCarros = numeroDeCarros;
14+
this.coberta = coberta;
15+
this.porta = porta;
16+
}
17+
}

0 commit comments

Comments
 (0)