Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. class Circle implements Shape {
  2. double radius;
  3.  
  4. /* ... */
  5.  
  6. public double diameter() {
  7. return 2 * radius;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement