Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public void servCriarConta(String x){
  2. if (x.contains("criar conta")){
  3. float saldo=Float.parseFloat(x.substring(11,x.length()-1));
  4. int id= this.banco.createAccount(saldo);
  5. System.out.println("Conta Criada com ID:"+id);
  6. }//else{
  7.  
  8. //}
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement