Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public class Geldschein {
  2.  
  3. private int wert;
  4.  
  5. public Geldschein(int wert) {
  6.  
  7. this.wert = wert;
  8.  
  9. }
  10. // + getWert ()
  11. public int getWert() {
  12. return wert;
  13.  
  14. }
  15.  
  16. }
  17. //DU HUAN
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement