Advertisement
Guest User

Untitled

a guest
Apr 8th, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1. public class Circle {
  2.  
  3.     double r;
  4.  
  5.     public Circle(double radius) {
  6.         r = radius;
  7.     }
  8.  
  9.     public double areaOfCircle() {
  10.  
  11.     }
  12.  
  13.     public static void main(String[] args) {
  14.  
  15.     }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement