Java Microproject
Java Microproject
Academic year
2022-2023
Affiliated To
MAHARASHTRA STATE BOARD OF TECHNICAL
EDUCATION
1
MAHARASHTRA STATE BOARD OFTECHNICAL
EDUCATION
2
MAHARASHTRA STATE BOARD OFTECHNICAL
EDUCATION
3
MAHARASHTRA STATE BOARD OFTECHNICAL
EDUCATION
4
MAHARASHTRA STATE BOARD OFTECHNICAL
EDUCATION
5
MAHARASHTRA STATE BOARD OFTECHNICAL
EDUCATION
6
GROUP MEMBERS
GUIDED BY
MRS. DIKSHIKA MA’AM
AND
MRS.PURVA MAAM
7
ACKNOWLEDGEMENT
We are also grateful to our principal and our vice principal who
not only supported us in our project but also encouraged for every
creative activity. We also sincerely give thanks to our head of
department Mrs. Dikshika and Mrs Purva of computer and its sector,
friends and well-wishers to directly or indirectly contribute for the
success of our maiden mission.
8
INDEX
1 Introduction 10
2 Aim Of Project 11
3 Literature Review 12
4 Objective / Scope 13
6 Limitation 17
7 Conclusion 18
8 References 19
9
INTRODUCTION
10
AIM OF PROJECT
11
LITERATURE REVIEW
In this section discusses about the review of the current situation and
reviewing related product in regards to the proposed idea. The main
purpose of this literature review is to study the background of the
current project, so that we could further define the problem and provide
any theoretical bases for the research.
The research was made to come out with a conclusion that the current
method showed a significant done very well. The scope of
implementing the ATM Machine using java with the new features is
reviewed thoroughly. From the observation made, the current methods
which is the
In this project we actual made an ATM using java honestly it is bit
interesting project that we manage to made it.
We made this project for Study Purpose.
12
OBJECTIVE / SCOPE
To deposit the money, we simply get the deposit amount from the
user, add it to the total balance and print the successful message.
13
CODE AND OUTPUT
CODE:
import java.util.*;
public class Main {
static int Balance=50000;
static void Withdraw(){
System.out.print("Enter
Amount>>"); Scanner w=new
Scanner(System.in); int
with=w.nextInt();
int p=Balance-with;
System.out.println("Your Amount is Successfully Withdraw
**********"); System.out.println("Your Remaining Amount
is>>>>>>"+p); System.out.println("*********Thank For using TATE
ATM**************");
}
static void Deposit(){
System.out.print("Enter
Amount>>"); Scanner w=new
Scanner(System.in); int
Dip=w.nextInt();
int pr=Balance+Dip;
System.out.println("Your Amount is Successfully Deposit
**********"); System.out.println("Your Amount is>>>>>>"+pr);
System.out.println("*********Thank For using TATE
ATM**************");
}
static void Show_balance(){
System.out.println("YOUR CURRENT BANK BALANCE>>>>>>"+Balance);
}
15
}
System.out.println("Choose 1 Withdraw");
System.out.println("Choose 2 Deposit");
System.out.println("Choose 3 To Show Balance");
System.out.println("Choose 4 To EXIT#");
System.out.print("Enter>>");
Scanner sc=new
Scanner(System.in);
option=sc.nextInt();
switch(option){
case 1:
Withdraw();
break;
case 2:
Deposit();
break;
case 3:
Show_balance()
; break;
case 4:
break;
}
}
}
OUTPUT:
Withdraw
16
DEPOSIT
TO SHOW BALANCE
17
LIMITATION
18
CONCLUSION
19
REFERENCE
https://www.geeksforgeeks.org/java-program-to-display-
the-atm-transaction/
https://www.javatpoint.com/atm-program-java
https://www.educba.com/atm-program-in-java/
20