wap to make atm machine. #JAVA
import java.util.Scanner; class AtmMachine { private static Scanner in ; private static float balance = 0; // initial balance to 0 for everyone private static int anotherTransaction; public static void main(String args[]) { in = new Scanner(System.in); // call our transaction method here transaction(); } private static void transaction() { int choice; System.out.println("Please select an option"); System.out.println("1. Withdraw"); System.out.println("2. Deposit"); System.out.println("3. Balance"); choice = in .nextInt(); switch (choice) { ...