Car c = new Car(); GasStand g = new GasStand(); c.drive(); c.gas_Fill(g); } } $BSKBWB public class Car{ int num; double dist; String name; void drive(){…} void stop(){…} void gas_fill(GasStand g){…} } (BT4UBOEKBWB public class GasStand{ double gasAmount; String shopName; }
Car c = new Car(); GasStand g = new GasStand(); c.drive(); c.gas_Fill(g); } } $BSKBWB public class Car{ int num; double dist; String name; void drive(){…} void stop(){…} void gas_fill(GasStand g){…} } (BT4UBOEKBWB public class GasStand{ double gasAmount; String shopName; }