Advertisement
dizzy94

Untitled

Apr 22nd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package geometria;
  2.  
  3. public abstract class FiguraForemna implements Figura{
  4. double bok;
  5. String nazwa;
  6. Punkt punkt;
  7.  
  8. FiguraForemna(double bok, double punktX, double punktY){
  9. this.bok = bok;
  10. this.punkt.wspolrzednaX = punktX;
  11. this.punkt.wspolrzednaY = punktY;
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement