-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbanking.java
63 lines (56 loc) · 1.69 KB
/
banking.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
import java.util.Scanner;
// Banking System
// class Account---name,balance,credit
// 2 method----1. Deposit 2. Withdraw
// Constraint... balance<3000 ==> print...
class Account {
String name;
double balance;
Account(String n, double m) {
name = n;
balance = m;
}
void deposit(double sal) {
balance += sal;
}
void withdraw(double with) {
balance -= with;
if (balance < 3000) {
System.out.println("Minimum balance not maintained!");
}
}
void display() {
System.out.println("The account balance is: " + balance);
}
}
class banking {
public static void main(String[] args) { // args[0]-name, args[1]-balance
String fullName = args[0];
double bal = Integer.parseInt(args[1]);
Account person1 = new Account(fullName, bal);
boolean i = true;
while (i) {
Scanner myObj = new Scanner(System.in);
System.out.println("1. Deposit\n2. Withdraw\n3. See Balance: ");
int option = myObj.nextInt();
switch (option) {
case 1:
System.out.println("Enter balance:");
double blnce1 = myObj.nextDouble();
person1.deposit(blnce1);
break;
case 2:
System.out.println("Enter balance:");
double blnce2 = myObj.nextDouble();
person1.withdraw(blnce2);
break;
case 3:
person1.display();
break;
default:
i = false;
break;
}
}
}
}