Guest User

Untitled

a guest
Jun 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class Kreis extends Figur
  2. {
  3. private double r;
  4.  
  5. public Kreis( double r )
  6. {
  7. this.r = r;
  8. }
  9.  
  10. public double getFlaeche()
  11. {
  12. return Math.PI * r * r;
  13. }
  14. }
Add Comment
Please, Sign In to add comment