-
Notifications
You must be signed in to change notification settings - Fork 0
/
Principal.java
45 lines (36 loc) · 1.34 KB
/
Principal.java
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
39
40
41
42
43
44
45
//--------> Principal
import java.util.Scanner;
class Principal{
public static void main(String[] args){
TAlumno personas[];
int n,edad;
String nombre,curp,carrera,matricula,correo;
Scanner sc1 = new Scanner(System.in); //NUMEROS
Scanner sc2 = new Scanner(System.in); //CADENAS
System.out.println("Lista de alumnos Programacion II");
System.out.print("Cuantos datos deseas ingresar: ");
n = sc1.nextInt();
personas = new TAlumno[n];
System.out.println("Ingresa los datos:");
for(int i=0; i<n ; i++){
System.out.print("Dame el dato del alumno " + (i+1) + ": ");
nombre = sc2.nextLine();
System.out.print("Dame la edad del alumno " + (i+1) + ": ");
edad = sc1.nextInt();
System.out.print("Dame el CURP del alumno " + (i+1) + ": ");
curp = sc2.nextLine();
System.out.print("Dame la matricula del alumno " + (i+1) + ": ");
matricula = sc2.nextLine();
System.out.print("Dame la carrera del alumno " + (i+1) + ": ");
carrera = sc2.nextLine();
System.out.print("Dame el correo del alumno " + (i+1) + ": ");
correo = sc2.nextLine();
personas[i] = new TAlumno(nombre,edad,curp,matricula,carrera,correo);
System.out.println();
}
System.out.println("\nLa lista de alumnos es:");
for(int i=0;i<n;i++){
System.out.println(personas[i].toString());
}
}//FIN MAIN
}//FIN CLASE Principal