JPR 11
JPR 11
Micro-project report on
withdrawal”
Submitted to:
MAHARASHTRA STATE BOARD OF TECHNICAL
EDUCATION, MUMBAI
COMPUTER ENGINEERING
Submitted by:
Yuvraj Garodi
Artharv Manekar
Vaishali Taywade
Akshita Dharanwar
Astha Madekar
Lecturer, CO Department
CERTIFICATE
This is to certify that this Micro project report on “Mini bank system for
handling deposits and withdrawal ” is the Bonafide work of (Yuvraj Garodi,
Vaishali Taywade, Arthrav Manekar,Akshita Dharanwar,Astha Madekar)
who carried out the project work under my supervision for the partial fulfilment
of curriculum as prescribed by MSBTE, Mumbai.
The student of Nagpur Institute of Technology, (formerly known as NIT Polytechnic) Second
We the students of Year Fourth semester of course COMPUTER ENGINEERING humbly submit that
we have Completed time to time as a part of project work as prescribed Maharashtra State Board of
Technical Education, Mumbai for the subject Java programming and the project is prescribed .In
the report by our own skill and study for the academic session 2023-24, as per the guidance Of Miss.
Nikita Patil, Lecturer in Computer Department.
import java.util.Scanner;
class BankAccount {
private String accountNumber;
private double balance;
switch (choice) {
case 1:
System.out.print("Enter deposit amount: $");
double depositAmount = scanner.nextDouble();
account.deposit(depositAmount);
break;
case 2:
System.out.print("Enter withdrawal amount: $");
double withdrawalAmount = scanner.nextDouble();
account.withdraw(withdrawalAmount);
break;
case 3:
System.out.println("Current Balance: $" + account.getBalance());
break;
case 4:
System.out.println("Thank you for using Mini Bank System");
System.exit(0);
default:
System.out.println("Invalid choice, please try again");
}
}
}
}
Output