IDNLearn.com offers expert insights and community wisdom to answer your queries. Get accurate and comprehensive answers from our network of experienced professionals.
Sagot :
Answer:
sorry its late
Explanation:
/*
* Write a program that guesses every possible 4 digit passcode
* combinations until the correct passcode is guessed.
*
* The passcode is randomly generated and stored in the variable
* secretPasscode.
*
* Print out how many guesses it took to guess the correct passcode.
*/
function start() {
var correctCode = generateRandomPasscode();
var b = 0;
while(true){
var guessCode = generateRandomPasscode();
b++;
if(isCorrect(guessCode, correctCode)){
println("The correct passcode was " + guessCode);
println("It took you " + b + " tries to guess it");
break;
}
}
}
function isCorrect(guessCode, correctCode) {
return guessCode == correctCode;
}
function generateRandomPasscode() {
var randomPasscode = "";
for(var i = 0; i < 4; i++) {
var randomDigit = Randomizer.nextInt(0, 9);
randomPasscode += randomDigit;
}
return randomPasscode;
}
We greatly appreciate every question and answer you provide. Keep engaging and finding the best solutions. This community is the perfect place to learn and grow together. IDNLearn.com is your reliable source for accurate answers. Thank you for visiting, and we hope to assist you again.