-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgression.java
More file actions
86 lines (74 loc) · 1.31 KB
/
Copy pathAgression.java
File metadata and controls
86 lines (74 loc) · 1.31 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import java.util.*;
class Student
{
String name;
int id;
String dept;
Student(String name,int id,String dept)
{
this.name=name;
this.id=id;
this.dept=dept;
}
}
class Department
{
List<Student> student;
String name;
Department(String name,List<Student> student)
{
this.name=name;
this.student=student;
}
List<Student> getStudent()
{
return student;
}
}
class Institute
{
List<Department> dept;
String name;
Institute(String name,List<Department> dept)
{
this.name=name;
this.dept=dept;
}
int getTotalStudentInInstitute()
{
int noOfStudent=0;
List<Student> student;
for(Department d:dept)
{
student=d.getStudent();
for(Student s:student)
{
noOfStudent++;
}
}
return noOfStudent;
}
}
class Agression
{
public static void main(String args[])
{
Student s1=new Student("gaurav",153,"CSE");
Student s2=new Student("Kushal",156,"CSE");
Student s3=new Student("vikash",253,"MECH");
Student s4=new Student("Ankit",254,"MECH");
List<Student> cse=new ArrayList<>();
cse.add(s1);
cse.add(s2);
List<Student> mech=new ArrayList<>();
mech.add(s2);
mech.add(s3);
Department d1=new Department("CSE",cse);
Department d2=new Department("MECH",mech);
List<Department> dept=new ArrayList<>();
dept.add(d1);
dept.add(d2);
Institute ins=new Institute("NIT",dept);
System.out.println("Total Studnet in institute="+ins.getTotalStudentInInstitute());
}
}