Java MP
Java MP
On
“Banking Application ”
Submitted & Presented in the fulfillment of the
requirement for the award of Diploma in
Computer Engg.
By
Ms.Doke S.M.
Mr.Surve A.S.
Ms.Shaikh S.A.
Ms.Ubale R.J.
Department of
COMPUTER ENGINEERING
NEW SATARA COLLEGE OF ENGINEERING AND
MANAGMENT,
KORTI-PANDHARPUR
A.Y. 2022-2023
1
NEW SATARA COLLEGE OF ENGINEERING AND MANAGMENT,
KORTI-
PANDHARPUR
Student of java (Com.Eng.) class in the fulfillment for the award of Diploma in
2
Acknowledgement
for her guidance support and encouragement throughout the duration of the project without his
motivation and help the successful completion of this project would not have been possible.
We are very much thankful of Mr. Puri S.B. HOD General Science Dept. for
We are also equally indebted to our principal Prof. Londhe V. H. for his valuable
3
Index
Sr. No Title Page No
1
Introduction
5
3 Output 11-17
4 Refreance 18
4
Introduction
5
Program code
import java.util.Scanner;
class BankDetails
accno = sc.next();
acc_type = sc.next();
name = sc.next();
balance = sc.nextLong();
6
System.out.println("Balance: " + balance);
long amt;
amt = sc.nextLong();
long amt;
amt = sc.nextLong();
} else {
if (accno.equals(ac_no)) {
showAccount();
return (true);
return (false);
7
}
class BankingApp
int n = sc.nextInt();
C[i].openAccount();
int ch;
do {
ch = sc.nextInt();
switch (ch) {
case 1:
C[i].showAccount();
8
break;
case 2:
found = C[i].search(ac_no);
if (found) {
break;
if (!found) {
break;
case 3:
ac_no = sc.next();
found = false;
found = C[i].search(ac_no);
if (found) {
C[i].deposit();
break;
}
9
if (!found) {
break;
case 4:
ac_no = sc.next();
found = false;
found = C[i].search(ac_no);
if (found) {
C[i].withdrawal();
break;
if (!found) {
break;
case 5:
break;
} }
10
Out put
5.Exit
Balance: 1000
Balance: 2000
Balance: 3000
Balance: 4000
Balance: 5000
5.Exit
Balance: 1000
5.Exit
Balance: 1000
200
5.Exit
Balance: 2000
Balance: 3000
Balance: 4000
Balance: 5000
5.Exit
4
15
Enter Account No : 1002
Balance: 2000
500
5.Exit
Balance: 1200
Balance: 1500
Balance: 3000
Balance: 4000
Balance: 5000
5.Exit
Refreance
17
Link 1. www.geeksforgeeks.org
Link 2. www.tutorialspoint.com
And my subject teacher …
18