我在使用此代码时遇到了一些麻烦。这是我的java class.it的作业,但是我只是想找出问题而已。

问题:

当我将其上传到WileyPlus(自动校正服务器)时,它一直在说,当'int n = 14'时,预期结果为“ 24,15”,但是得到“ 23,16”。但是,当我输入12时,我得到的是“ 7,5”。我似乎找不到导致这种情况的原因。

有了代码,它将更有意义。

public class RentalCar {
    private boolean rented;
    private static int availableCars = 0;
    private static int rentedCars = 0;

    public RentalCar() {
        availableCars++;
        rented = false;
    }

    public static int numAvailable() {
        return availableCars;
    }

    public static int numRented() {
        return rentedCars;
    }

    public boolean rentCar() {
        availableCars--;
        rentedCars++;
        rented = true;
        return rented;
    }

    public boolean returnCar() {
        if (rented) {
            availableCars++;
            rentedCars--;
            rented = false;
        }

        return false;
    }

    public static String check(int n) {
        RentalCar[] cars = new RentalCar[n];
        for (int i = 0; i < n; i++) {
            cars[i] = new RentalCar();
        }

        for (int i = 0; i < n; i = i + 2) {
            cars[i].rentCar();
        }

        for (int i = 0; i < n; i = i + 3) {
            cars[i].rentCar();
        }

        for (int i = 0; i < n; i = i + 4) {
            cars[i].returnCar();
        }

        return RentalCar.numRented() + " " + RentalCar.numAvailable();
    }
}

最佳答案

returnCar()中,检查是否要租借要租借的汽车。在rentCar()中,您不需要这样做。看来您可以租用已经租用的汽车。尝试防止租用已经租用的汽车。

09-25 21:17