-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharrayofobjects.java
41 lines (41 loc) · 1.01 KB
/
arrayofobjects.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
import java.util.*;
class employee
{
int x;
String n;
long p;
void read()
{
Scanner sc=new Scanner(System.in);
System.out.println("enter the name of employee:");
n=sc.nextLine();
System.out.println("enter the employee number:");
x=sc.nextInt();
System.out.println("enter the phone number:");
p=sc.nextLong();
}
void display()
{
System.out.println("Name: "+n);
System.out.println("Emp No: "+x);
System.out.println("Phone: "+p);
}
}
class arrayofobjects
{
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("enter the no of employee details");
int y=sc.nextInt();
employee obj[]=new employee[y];
for(int i=0;i<y;i++)
{
obj[i]=new employee();
obj[i].read();
}
for(int i=0;i<y;i++)
{
obj[i].display();
}
}
}