Advertisement
DINO_CH

Untitled

Jun 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. public class Conta {
  2.     int numero;
  3.     String dono;
  4.     double saldo;
  5.     double limite;
  6.    
  7.     boolean saca(double valor) {
  8.         if(this.saldo<valor) {
  9.             return false;}
  10.         else {this.saldo -= valor;
  11.             return true;
  12.         }
  13.     }
  14.     void deposita(double quantidade) {
  15.         this.saldo+=quantidade;
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement