Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1.  
  2. public class TestCode1 {
  3. private double radius;
  4.  
  5. public double getArea() {
  6. return this.radius * this.radius * Math.PI;
  7. }
  8.  
  9.  
  10.  
  11. public String toString() {
  12. return "radius: " + this.radius + "area: " + this.getArea();
  13.  
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement