-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOPA1.java
124 lines (109 loc) · 2.67 KB
/
OPA1.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import java.util.*;
public class Main
{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
TravelAgencies[] A = new TravelAgencies[1];
for(int i=0; i < 1; i++)
{
int regNo = sc.nextInt();
String agencyName = sc.nextLine();
String packageType = sc.nextLine();
int price = sc.nextInt();
boolean flightFacility = sc.nextBoolean();
A[i] = new TravelAgencies(regNo, agencyName, packageType, price, flightFacility);
}
int num = sc.nextInt();
String p = sc.nextLine();
int maxPrice = findAgencyWithHighestpackagePrice(A);
System.out.println(maxPrice);
TravelAgencies matchedAgency = agencyDetailForGivenIdAndType(A, num, p);
if(matchedAgency == null)
{
System.out.println("No such agencies");
}
else
{
System.out.println(matchedAgency.getagencyName());
System.out.println(matchedAgency.getprice());
}
}
public static int findAgencyWithHighestpackagePrice(TravelAgencies[] A)
{
int max = 0;
for(int i=0; i < A.length; i++)
{
if(A[i].getprice() > max)
{
max = A[i].getprice();
}
}
return max;
}
public static TravelAgencies agencyDetailForGivenIdAndType(TravelAgencies[] A, int num, String p)
{
for(int i=0; i < A.length; i++)
{
if(A[i].getregNo() == num && A[i].getpackageType() == p && A[i].getflightFacilities())
{
return A[i];
}
}
return null;
}
}
class TravelAgencies
{
int regNo;
String agencyName;
String packageType;
int price;
boolean flightFacility;
TravelAgencies(int regNo, String agencyName, String packageType, int price, boolean flightFacility){
this.regNo = regNo;
this.agencyName = agencyName;
this.packageType = packageType;
this.price = price;
this.flightFacility = flightFacility;
}
void setregNo(int regNo)
{
this.regNo = regNo;
}
void setagencyName(String agencyName)
{
this.agencyName = agencyName;
}
void setpackageType(String packageType)
{
this.packageType = packageType;
}
void setprice(int price)
{
this.price = price;
}
void setflightFacility(boolean flightFacility)
{
this.flightFacility = flightFacility;
}
int getregNo()
{
return this.regNo;
}
String getagencyName()
{
return this.agencyName;
}
String getpackageType()
{
return this.packageType;
}
int getprice()
{
return this.price;
}
boolean getflightFacilities()
{
return this.flightFacility;
}
}