package transport ; class vehicle { protected float weight ; //in lbs private float topSpeed ; //mph } public class train extends vehicle { public int noCarriages ; void printWeight() { System.out.println( "weight: " + weight ) ; } }