温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

如何使用java实现猜数字小游戏

发布时间:2021-03-23 13:41:55 来源:亿速云 阅读:234 作者:小新 栏目:开发技术

这篇文章给大家分享的是有关如何使用java实现猜数字小游戏的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

题目描述:

猜数字(又称 Bulls and Cows )是一种古老的的密码破译类益智类小游戏,起源于20世纪中期,一般由两个人或多人玩,也可以由一个人和电脑玩。通常由两个人玩,一方出数字,一方猜。出数字的人要想好一个没有重复数字的4个数,不能让猜的人知道。猜的人就可以开始猜。每猜一个数字,出数者就要根据这个数字给出nAmB,其中A前面的数字n表示数字正确且位置也正确的数的个数,而B前的数字m表示数字正确但位置不正确的数的个数。如正确答案为 5234,而猜的人猜 5346,则是 1A2B,其中有一个5的位置对了,记为1A,而3和4这两个数字对了,而位置没对,因此记为 2B,合起来就是 1A2B。接着猜的人再根据出题者的几A几B继续猜,直到猜中(即 4A0B)为止。

程序要求:

1、满足题意 2、输入数字的合法性3、输出总猜测次数

代码

package Practice;
// 猜数字 (Bulls and cows)
import java.util.Scanner;

public class Day0322 {
 public static void main(String[] args) {
  Scanner scanner = new Scanner(System.in);
  // 产生0000~9999的随机数
  double r = Math.random();
  int res = (int)(r * 8999 + 1000);

  int flag = 0;
  // 合法性检查,判断存在重复数字
  while(flag == 0)
  {
   int[] check = new int[10];
   for(int i = 0; i < 10; i ++ ) check[i] = 0;

   check[res / 1000] += 1;check[(res / 100) % 10] += 1;
   check[(res / 10) % 10] += 1;check[res % 10] += 1;

   for(int i = 0; i < 10; i ++ )
    if(check[i] >= 2) {
     r = Math.random();
     res = (int)(r * 8999 + 1000);
     flag = 0;
     break;
    }
    else flag = 1;
  }

  // 0000~9999
  System.out.println("答案: " + res);

  int input = -1;
  int idx = 0;
  int times = 0;
  while(input != res)
  {
   System.out.print("请输入你猜的数字: ");
   input = scanner.nextInt();
   int inputcopy = input;

   if(input < 0)
   {
    System.out.println("您输入的数字不是四位数!");
    times ++;
    continue;
   }
   int t = 0;
   // 输入数字为4位数,合法性检查
   while(inputcopy != 0)
   {
    inputcopy /= 10;
    t ++;
   }
   if(t != 4)
   {
    System.out.println("您输入的数字不是四位数!");
    times ++;
    continue;
   }

   int n = 0, m = 0;// nAmB

   if(input == res) break;
   // 输入的各个位数
   int[] a = new int[4];
   a[0] = input / 1000;a[1] = (input / 100) % 10;
   a[2] = (input / 10) % 10; a[3] = (input) % 10;
   // 答案的各个位数
   int[] ans = new int[4];
   ans[0] = res / 1000;ans[1] = (res / 100) % 10;
   ans[2] = (res / 10) % 10; ans[3] = (res) % 10;

   for(int i = 0; i < 4; i ++)
   {
    if(ans[i] == a[i]) n += 1; // A的数量
    for(int j = 0; j < 4; j ++){// B的数量
     if(ans[j] == a[i] && j != i) m += 1;
    }
   }
   System.out.print((++ idx) + ": " + n + "A" + m + "B");
   System.out.println();
   times ++;

  }
  if(input == res){
   times ++;
   System.out.println("4A0B");
   System.out.println("你很厉害啊!");
   System.out.println("猜测次数: " + times);
  }

 }

}

运行效果

如何使用java实现猜数字小游戏

感谢各位的阅读!关于“如何使用java实现猜数字小游戏”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI