Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Write a description of class IdCard here.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class IdCard
- {
- String name;
- int saldo;
- public IdCard(int money,String account){
- saldo= money;
- name = account;
- }
- public String getAccount(){
- return name;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment