Guest User

Untitled

a guest
Apr 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class Sonderposten extends Artikel {
  2.  
  3. public double rabatt;
  4.  
  5. public Sonderposten(int artikelNr, int lagerzeit, double preis, String bezeichnung) {
  6. super(artikelNr,lagerzeit,preis,bezeichnung);
  7. if(lagerzeit > 12) {
  8. rabatt = 0.7;
  9. } else {
  10. rabatt = 0.9;
  11. }
  12. }
Add Comment
Please, Sign In to add comment