Coding Guidelines

Formatting:

Math:

// Good
public double getPerimeter() {
    return (2.0 * Math.PI * this.radius);
}
// Bad
public double getPerimeter() {
    return (Math.PI * 2.0 * this.radius);
}