import java.util.Scanner; /** * short description of this program * * @author Ibid umm * @date yyyy-mm-dd * @version 1.0 */ public class AutoListe{ // declare attributes static Scanner scanner; /** * constructor: initialize attributes */ public AutoListe() { scanner = new Scanner(System.in); } /** * starts the execution * * @param args * command line arguments */ public static void main(String[] args) { AutoListe program = new AutoListe(); program.run(); scanner.close(); } /** * description */ private void run() { // TODO: // Gemäss PAP implementieren. } }