taufiq123

Untitled

Oct 27th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1.  
  2. /**
  3.  * Write a description of class IdCard here.
  4.  *
  5.  * @author (your name)
  6.  * @version (a version number or a date)
  7.  */
  8. public class IdCard
  9. {
  10.    String name;
  11.    int saldo;
  12.    
  13.    public IdCard(int money,String account){
  14.     saldo= money;
  15.     name = account;
  16.     }
  17.    
  18.    public String getAccount(){
  19.         return name;
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment