-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractDemo.java
More file actions
61 lines (47 loc) · 919 Bytes
/
AbstractDemo.java
File metadata and controls
61 lines (47 loc) · 919 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
53
54
55
56
57
58
59
60
61
import java.lang.*;
abstract class RBI
{
public int Balance;
public RBI()
{
this.Balance=0;
}
public void Credit(int Amount)
{
this.Balance=this.Balance+Amount;
}
public void Debit(int Amount)
{
this.Balance=this.Balance-Amount;
}
public abstract int CalculateInterest();
}
class SBI extends RBI
{
public int AccountNumber;
public int IFSC;
public int CalculateInterest()
{
return 6;
}
}
class PNB extends RBI
{
public int AccountNumber;
public int IFSC;
public int CalculateInterest()
{
return 7;
}
}
class AbstractDemo
{
public static void main(String a[])
{
PNB pobj=new PNB();
SBI sobj=new SBI();
pobj.Credit(1000);
pobj.Debit(200);
System.out.println(pobj.Balance); //800
}
}