OccultKingdoms
BANNED
- Mar 11, 2013
- 5,542
- 9,750
I just tried it and here is my result
https://pastebin.com/kbGH33mt
12693 attempts to get it.
So I'm pretty unlucky!
Should've known better than to cheat a friend
And waste the chance that I've been given
So I'm never gonna dance again
The way I danced with you
https://pastebin.com/kbGH33mt
12693 attempts to get it.
So I'm pretty unlucky!
JavaScript:
function generateNumber() {
// Generate a random number between 1 and 9999 (inclusive)
return Math.floor(Math.random() * 9999) + 1;
}
function playGame() {
let targetNumber = 1234;
let guess;
while (guess !== targetNumber) {
guess = generateNumber();
console.log("Your guess:", guess);
}
console.log("Congratulations! You guessed the number:", guess);
}
playGame();
Should've known better than to cheat a friend
And waste the chance that I've been given
So I'm never gonna dance again
The way I danced with you