Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class Mês {
  2. private int hamb;
  3.  
  4. public double vendaHamb (){
  5. Random rand = new Random();
  6. hamb = rand.nextInt(5)+1;
  7. return hamb;
  8. }
  9.  
  10. public double precoHamb (){
  11. double preco= vendaHamb()*78.00;
  12.  
  13. return preco;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement