import java.util.Scanner; public class Car { public String name; public int money; public int people; public int things; public double thing; public Car(String name, int money, int people){ this.name=name; this.money=money; this.people=people; System.out.println( name + " " + money + "元/天" + " " + "载人:" + people + "人"); } public Car (String name, int money, int people, int things){ this.name=name; this.money=money; this.people=people; this.things=things; System.out.println( name + " " + money + "元/天" + " " + "载人:" + people + "人" + " " + "载货" + things + "吨" ); } public Car (String name, int money, double thing){ this.name=name; this.money=money; this.thing=thing; System.out.println( name + " " + money + "元/天" + " " + "载货:" + thing + "吨" ); } }
rose_0010
2014-10-28
举报
0/150
提交
取消