import java.util.Scanner; /** * short description of this program * * @author Ibid umm * @date yyyy-mm-dd * @version 1.0 */ public class PersonenVerwaltung { // declare attributes static Scanner scanner; /** * constructor: initialize attributes */ public PersonenVerwaltung() { scanner = new Scanner(System.in); } /** * starts the execution * * @param args * command line arguments */ public static void main(String[] args) { PersonenVerwaltung program = new PersonenVerwaltung(); program.run(); scanner.close(); } /** * description */ private void run() { Person person; // TODO: // 0. Person erstellen // 1. User nach jedem Attribut einer Person fragen und diese im Objekt person speichern. // 2. Alle Informationen auf dem Bildschirm ausgeben. } }