Skip to content

Commit 03b4c90

Browse files
committed
Classes
1 parent 3940f1b commit 03b4c90

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package com.example;
2+
3+
class Cliente {
4+
double renda;
5+
char sexo;
6+
int anoNascimento;
7+
}
8+
9+
public class Classes {
10+
11+
public static void main(String[] args) {
12+
System.out.println("Criando classes");
13+
Cliente cliente = new Cliente();
14+
cliente.renda = 1000;
15+
cliente.sexo = 'M';
16+
cliente.anoNascimento = 1980;
17+
System.out.println("Renda: " + cliente.renda);
18+
System.out.println("Sexo: " + cliente.sexo);
19+
System.out.println("Ano de nascimento: " + cliente.anoNascimento);
20+
21+
Cliente cliente2 = new Cliente();
22+
cliente2.renda = 2000;
23+
cliente2.sexo = 'F';
24+
cliente2.anoNascimento = 1970;
25+
26+
System.out.println("Renda: " + cliente2.renda);
27+
System.out.println("Sexo: " + cliente2.sexo);
28+
System.out.println("Ano de nascimento: " + cliente2.anoNascimento);
29+
30+
}
31+
32+
}

0 commit comments

Comments
 (0)