class Bil { private int tank; private int tankstr; private double forbruk; public Bil(int tankstr, double forbruk) { this.tankstr = tankstr; this.forbruk = forbruk; this.tank = tankstr; } public int sjekkTankstatus() { return tank; } public void fyllTank(int liter) { if(liter + tank > tankstr) { tank = tankstr; System.out.println("Du pr?vde ? fylle for mye"); } else { tank = tank + liter; } } public void kjor(int km) { tank = tank - (int)((double)km * forbruk); } }