Commit 2be2969d authored by jose.alencastro's avatar jose.alencastro

ok

parent c3eefe35
abstract public class Shape {
protected int size;
abstract public void draw();
abstract public float area();
abstract public float circumference();
public int getSize() { return size; }
public void setSize(int size) { this.size = size; }
public Shape(){
this.size = 3;
}
public Shape(int size){
this.size = size;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment