/**
 * Class describing a person
 *
 * @author TK Rogers
 * @version 02-17-09
 */
public class Person{
    // Fields
    private double  weight,
                            height;
 
    // Constructors               
    public Person ( ) {
    }
 
    public Person (double wt, double ht) {
        weight = wt;
    }

 

    // Method
    public double getWeight ( ) {
        return weight;
    }
}