我正在编写策划游戏,这是我的代码:

import java.util.*;

public class mm {
    public static void main(String[] args) {
        System.out.println("I'm thinking of a 4 digit code.");
        int[] random=numberGenerator();
        int exact=0, close=0;
        while(exact!=4){
            int[] guess=userinput();
            exact=0;
            close=0;
            for(int i=0;i<guess.length;i++){
                if(guess[i]==random[i]){
                    exact++;
                }
                else if(random[i]==guess[0] || random[i]==guess[1] || random[i]==guess[2] || random[i]==guess[3]){
                    close++;
                }
            }
            if(exact==4){
                System.out.println("YOU GOT IT!");
            }
            else{
                System.out.println("Exact: "+exact+" Close: "+close);
            }
        }
    }

public static int[] userinput(){
    System.out.println("Your guess: ");
    Scanner user = new Scanner(System.in);
    String input = user.nextLine();
    int[] guess = new int[4];
    for (int i = 0; i < 4; i++) {
        guess[i] = Integer.parseInt(String.valueOf(input.charAt(i)));
    }
    return guess;
}

public static int[] numberGenerator() {
    Random rnd = new Random();
    int[] randArray = {10,10,10,10};
    for(int i=0;i<randArray.length;i++){
        int temp = rnd.nextInt(9);
        while(temp == randArray[0] || temp == randArray[1] || temp == randArray[2] || temp == randArray[3]){
            temp=rnd.nextInt(9);
        }
        randArray[i]=temp;
    }
    return randArray;
}
}


现在该程序可以工作了。但是,我想添加一个函数,如果用户输入的是“ *”,程序将打印“输入的作弊代码。密码为:XXXX(//生成的随机数)”,然后继续询问。为了达到这个目的,我尝试编写一个单独的cheat()函数。但是它再次调用numbergenerator(),因此密码每次都会更改。如何避免这个问题?还是有其他方法可以实现此功能?

顺便说一句,这是作弊功能的逻辑:

if (guess.equals("*")){
    System.out.format("cheat code entered. The secret code is:")
    for(int i=0;i<guess.length;i++){
            System.out.print(guess[i]);
        }
}

最佳答案

作弊是这样的:

if (guess.equals("*")){
    System.out.format("cheat code entered. The secret code is:")
    for(int i=0;i<random.length;i++){
            System.out.print(random[i]);
        }
}


编辑:从userinput()获得随机访问的两种方法

A)将随机数作为参数传递给userinput()

public static int[] userinput(int[] random){
   ...


B)使随机变量成为成员变量(可能是更好的方法)

public class mm {
    static int[] random;
    public static void main(String[] args) {
        System.out.println("I'm thinking of a 4 digit code.");
        random=numberGenerator();
        ...

关于java - 如何在Java主脑游戏中添加“作弊”功能,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29881516/

10-10 07:28