当前位置:   article > 正文

java_基础:随机⽣成3个0~9的数, 如果其中三个数相同,或两个数相同,则输出“Win”,否则输出“Lost”, 并输出三个数的组合。_java math.random生成三个随机数会一样吗

java math.random生成三个随机数会一样吗

/*
随机⽣成3个0~9的数,
如果其中三个数相同,或两个数相同,则输出“Win”,否则输出“Lost”,
并输出三个数的组合。

该过程重复进⾏,只到三个数都为0时停⽌,输出Gameover。
随机数生成用到:int num=(int)(Math.random()*10);

 */

public class random_number {

    public static void main(String[] args) {

        do {


            int num1 = (int) (Math.random() * 10);
            int num2 = (int) (Math.random() * 10);
            int num3 = (int) (Math.random() * 10);

            if (num1 == num2 || num1 == num3 || num2 == num3) {
                System.out.println("win");
            } else System.out.println("lost");
            System.out.println("num1=" + num1 + "num2=" + num2 + "num3=" + num3);
            if(num1==num2&&num2==num3&&num1==0)
                break;
        }
         while(true);
    }

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/107045
推荐阅读
相关标签
  

闽ICP备14008679号