Write a program that design ATM machine with extra function for EXIM BANK
1st Shot
2nd Shot
3rd
Study or Copy and paste below codes:
import java.util.Scanner;
class assignment
{
public static void main(String [] args) {
Scanner take=new Scanner(System.in);
System.out.println("***********************************************************************");
System.out.println("***********************************************************************");
System.out.println("**********************WELCOME TO EXIM BANK*****************************");
System.out.println();
System.out.println();
System.out.println(" \t Please press \"1\" to continue Or \"0\" to quit");
//verification to continue
for(int i = 1; i>0;i++)
{
int go = take.nextInt();
if (go == 1){
break;
}
else if (go == 0){
System.out.println("You have choosen to exit, Bye Bye Bye...");
System.exit(0);
break;
}