Advertisement
sunspeak

Untitled

Oct 21st, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3.  
  4. public class Main
  5. {
  6. public static void main(String[] args) {
  7. Scanner scan = new Scanner(System.in);
  8. String a = scan.nextLine();
  9.  
  10. while (a.equals("End")) {
  11. a = scan.nextLine();
  12. if (a.equals("Create")) {
  13. BankAccount n1;
  14. n1.setIdUsers();
  15. }
  16.  
  17. }
  18.  
  19.  
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement