Java语言编写数字地雷游戏

Posted 9_金先生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java语言编写数字地雷游戏相关的知识,希望对你有一定的参考价值。

Java源代码如下:

public class Demo01 {
    public static void main(String[] args) {
        game();
    }
    static void game(){
        int numRandom = new Random().nextInt(100)+1;
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入你猜的数字:");
        while(true) {
            int numScanner = sc.nextInt();
            if(numRandom>numScanner){
                System.out.println("数字小了,重新输入");
            }else if(numRandom<numScanner){
                System.out.println("数字大了,重新输入");
            }else {
                System.out.println("恭喜你,猜中了");
                break;
            }
        }
    }
}

 

以上是关于Java语言编写数字地雷游戏的主要内容,如果未能解决你的问题,请参考以下文章

C语言写扫雷代码

C语言扫雷小游戏的实现(附详细代码)

C语言小游戏:扫雷实现

利用Java语言编写一个猜数字游戏(有次数限制)

使用C语言编写猜数字问题

扫雷游戏(C语言实现)初级版和优化版(增加了自动展开标记地雷功能,同时排除了第一次排到地雷的情况)