blob: 1febd1efc3f2fb0f18556ae8ab94d4b0ac32b555 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class Primeiro {
public static void main (String args[]) {
int inteiro = 47;
char caracter = 'F';
double real = 1.65;
String frase = "Lucy Mari";
boolean VF = true;
if (VF == true) {
System.out.println("Eu sou o " + frase + " tenho "
+ inteiro + " anos, e tenho " + real + "m de altura");
}
System.exit(0);
}
}
|