-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathl.java
48 lines (27 loc) · 1.23 KB
/
l.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
46
47
48
import java.util.Scanner;
public class l{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int contatore = 0;
Dipendente[] dipendenti = new Dipendente[3];
do {
System.out.println("Inserisci il nome del " + (contatore + 1) + "° Dipendente: ");
Scanner sc1 = new Scanner(System.in);
String nome = sc1.nextLine();
System.out.println("Inserisci il cognome del " + (contatore + 1) + "° Dipendente: ");
Scanner sc2 = new Scanner(System.in);
String cognome = sc2.nextLine();
System.out.println("Inserisci l'età del " + (contatore + 1) + "° Dipendente: ");
Scanner sc3 = new Scanner(System.in);
int eta = sc3.nextInt();
System.out.println("Inserisci l'anno di assunzione del " + (contatore + 1) + "° Dipendente: ");
Scanner sc4 = new Scanner(System.in);
int anno = sc3.nextInt();
System.out.println("Inserisci lo stipendio mensile del " + (contatore + 1) + "° Dipendente: ");
Scanner sc5 = new Scanner(System.in);
int stipendio = sc5.nextInt();
Dipendente dipendente = new Dipendente(nome, cognome, eta, stipendio);
dipendenti[contatore] = dipendente;
contatore++;
} while (contatore < 3);
}}