Java Project
Java Project
Chapter 1
INTRODUCTION
The aim of the ATM Simulation System project is to build a Java based ATM (Automated
Teller Machine) Simulation System. The introduction of ATM’s by various banks have
brought about freedom from the interminable queues in front of withdrawal counters at
banks. This ATM Simulation System requires the constant updating of records between
the bank servers and a spread out network of ATM’s.
Chapter 2
Program
import java.util.Scanner;
class Bank
{
private String accno;
private String name;
private long balance;
void openAccount()
{
System.out.print("Enter Account No: ");
accno=A.next();
System.out.print("Enter Name: ");
name=A.next();
System.out.print("Enter Balance: ");
balance=A.nextLong();
}
long amt;
System.out.println("Enter Amount U Want to withdraw : ");
amt=A.nextLong();
if(balance>=amt)
{
balance=balance-amt;
}
else
{
System.out.println("Less Balance..Transaction Failed..");
}
}
class ExBank
{
public static void main(String arg[])
{
Scanner A=new Scanner(System.in);
3.Deposit\n
4.Withdrawal\n
5.Exit");
System.out.println("Ur Choice :");
ch=A.nextInt();
switch(ch)
{
case 1:
for(int i=0;i<C.length;i++)
{
C[i].showAccount();
}
break;
case 2:
System.out.print("Enter Account No U Want to Search...: ");
String acn=A.next();
boolean found=false;
for(int i=0;i<C.length;i++)
{
found=C[i].search(acn);
if(found)
{
break;
}
}
if(!found)
{
System.out.println("Search Failed..Account Not Exist..");
}
break;
case 3:
System.out.print("Enter Account No : ");
acn=A.next();
found=false;
for(int i=0;i<C.length;i++)
{
found=C[i].search(acn);
if(found)
{
C[i].deposit();
break;
}
}
if(!found)
{
System.out.println("Search Failed..Account Not Exist..");
}
break;
case 4:
System.out.print("Enter Account No : ");
acn=A.next();
found=false;
for(int i=0;i<C.length;i++)
{
found=C[i].search(acn);
if(found)
{
C[i].withdrawal();
break;
}
}
if(!found)
{
System.out.println("Search Failed..Account Not Exist..");
}
break;
case 5:
System.out.println("Good Bye..");
break;
}
}
while(ch!=5);
}
}
Chapter 3
Output
1.Creating a database.
Chapter 4
Conclusion
We have explored practicality of doing parallel computing in java and we have successfully implemented
our Atm Simulator In java. we have efficiently programed and executed in java.
References
JAVA Nirali
JAVA Techmax
JAVA Technical
JAVA complete Reference
ANEEXURE II
(Signature of Faculty)