forked from carlosemiliorabazo/persona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.java
23 lines (22 loc) · 1.1 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import java.util.Scanner;
public class Main {
public static void main (String[] arg){
Scanner sc = new Scanner(System.in);
Persona p = new Persona();
System.out.println("Escribe tu nombre: ");
p.setNombre(sc.nextLine());
System.out.println("Escribe tu apellido: ");
p.setApellidos(sc.nextLine());
System.out.println("Escribe tu dni sin letra: ");
p.setDniSinLetra(Integer.parseInt(sc.nextLine()));
System.out.println("Escribe tu edad: ");
p.setEdad(Integer.parseInt(sc.nextLine()));
System.out.println("Escribe tus estudios: ");
p.setEstudios(sc.nextLine());
System.out.println("Escribe tu línea de LoL preferida: ");
p.setLoL(sc.nextLine());
System.out.println("Buenos dias : " + p.getNombre() + " " + p.getApellidos() + " con dni: " + String.valueOf(p.getDniSinLetra()) + " y edad:" + String.valueOf(p.getEdad()) + " años");
System.out.println("Tus estudios son: " + p.getEstudios());
System.out.println("Tu línea de LoL preferida es: " + p.getLoL());
}
}