Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
class Test{
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Wie alt sind sie");
int age = in.nextInt();
if (age >= 18) {
showPageContent();
}
}
public static void showPageContent() {
System.out.println("Seiteninhalt wird angezeigt");
}
}