Java Program to Display the ATM Transaction2 min read

In this tutorial, we will write an ATM program in Java. The program will represent the ATM transaction executed.

Operation available in the ATM Transaction are:

  1. Withdraw
  2. Deposit
  3. Check Balance
  4. Exit

The user will choose one of the above operations:

  • Withdraw is to withdraw the amount from an ATM. The user is asked to enter the amount and after the withdrawal process is complete, we need to remove that amount from the total balance.
  • Deposit is to add an amount to the total balance, here also the user enters the amount to be added to the total balance.
  • Check Balance means simply display the total balance available in the user’s account.
  • Exit is to return the user to the main page from the current transaction mode. For that, we will use exit(0).

ATM program Java

The following program uses the switch statement in java to create a case for each transaction or option.

Output:

ATM Program Java

MORE

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …
Read More

String Pattern Programs in C

In this tutorial, we will write various C pattern programs for String. Before that, you may go through the following topics in C. for loop …
Read More

Java Program to Find pair of Integers in Array whose sum is given Number

In this tutorial, we will write a program to find a pair of elements from an array whose sum equals a given number in java …
Read More

Program to Print Diamond Alphabet Patterns in C

In this tutorial, we will learn to write a C program to print Diamond patterns using alphabets/characters. However, in this tutorial, we will create a …
Read More

Half Diamond Pattern in C using Alphabets

In this tutorial, we will learn and code the half diamond alphabet patterns in C programming language. However, in this tutorial, we will create a …
Read More

Half Pyramid of Alphabets in C

In this tutorial, we will learn and code alphabet patterns in C programming language specifically the Half pyramid of alphabets in C programming. However, in …
Read More