package aula08.ex1.Interfaces; public interface IKmTravelled { void trip(int km); int lastTrip(); int totalDistance(); }