-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQ_48.java
More file actions
52 lines (42 loc) · 656 Bytes
/
Q_48.java
File metadata and controls
52 lines (42 loc) · 656 Bytes
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
interface Fare
{
public double getAmount();
}
class Bus implements Fare
{
double amount;
void setData(double amount)
{
this.amount=amount;
}
public double getAmount()
{
return amount;
}
}
class Train implements Fare
{
double amount;
void setData(double amount)
{
this.amount=amount;
}
public double getAmount()
{
return amount;
}
}
class Q_48
{
public static void main(String args[])
{
Bus ob=new Bus();
ob.setData(500.12);
double amt=ob.getAmount();
System.out.println("Fare of Bus : "+amt);
Train ob1=new Train();
ob1.setData(800.30);
amt=ob1.getAmount();
System.out.println("Fare of Train : "+amt);
}
}