<!DOCTYPE html>
<html>

<head>

    <title>Dein AI-Freund</title>

</head>

<body>
    <script>
        alert("Hallo! Ich bin ein AI-Chat-Bot. Möchtest du gerne chatten? Bitte drücke die 'Okay' Taste, um fortzufahren.");

        name = window.prompt("Wie heißt du?", "");
        age = window.prompt("Hallo, " + name + " und wie alt bist du?", "");

       
        game = window.prompt("Achso! Was ist dein Lieblings-Computerspiel?","");
        window.alert("Ich habe viel über dich gelernt! Dein Name ist " + name + ", du bist " + age + " Jahre alt.");
        window.alert("Und du spielst gerne " + game + "!");

        play = window.prompt("Möchtest du ein Spiel spielen? Schreib 'Ja' oder 'Nein!'", "");

        if(play == "Ja") {
            window.alert("Super!");

            var rules = "Ich denke mir eine Zahl zwischen 1 und 1000.";
            var zufall = Math.floor(Math.random() * 1000 + 1);

            window.alert(rules);
            var eingabe = Number(window.prompt("Rate mal: ", ""));

            if(eingabe < zufall) document.write("Zu klein!");
            if(eingabe > zufall) document.write("Zu groß!");
            if(eingabe == zufall) document.write("Richtig!");

        } else if(play == "Nein") {
            window.alert("Vielleicht beim nächsten Mal.");
        } else {
            window.alert("Ich verstehe nicht...");
        }

    </script>
</body>

</html>

Zuletzt geändert: Freitag, 7. April 2023, 13:50