class Car0Demo
{
public static void main(String[] args)
{
Car0 c = new Car0();
c.brand="奥迪";
c.price =100000000;
c.color="black";
double t=c.run(30.5);
System.out.println("汽车行驶了"+t+"小时");
c.stop("上海");
}
}
class Car0
{
String brand;
int price ;
String color;
public double run( double time)
{
return time;
}
public void stop (String where)
{
System.out.println("汽车在"+where+"停");
}
}
|
|