91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用java實現猜數字小游戲

發布時間:2021-03-23 13:41:55 來源:億速云 閱讀:261 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關如何使用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

水城县| 云和县| 泗洪县| 嘉禾县| 饶河县| 和田县| 平和县| 垦利县| 边坝县| 宣威市| 三江| 勐海县| 嘉黎县| 锦屏县| 荣成市| 吴江市| 高雄县| 大冶市| 昌黎县| 南溪县| 阿拉善右旗| 翁源县| 资讯| 那坡县| 黄龙县| 静乐县| 嘉兴市| 永州市| 湄潭县| 蒲江县| 定边县| 申扎县| 淅川县| 洛川县| 仁寿县| 峨眉山市| 清原| 东乡族自治县| 恩施市| 巴彦淖尔市| 兴安县|