溫馨提示×

溫馨提示×

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

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

Java中怎么實現(xiàn)帶GUI界面的猜數(shù)字游戲

發(fā)布時間:2021-05-28 11:55:56 來源:億速云 閱讀:289 作者:小新 欄目:編程語言

這篇文章主要介紹Java中怎么實現(xiàn)帶GUI界面的猜數(shù)字游戲,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

先導(dǎo)包

import java.util.*;
import javax.swing.*;

Java中怎么實現(xiàn)帶GUI界面的猜數(shù)字游戲

再寫主方法

public static void main(String[] args) {
}

Java中怎么實現(xiàn)帶GUI界面的猜數(shù)字游戲

新聲明一個Scanner和隨機數(shù)

public static void main(String[] args) {
	Scanner in = new Scanner(System.in);
	Random r = new Random();
}

Java中怎么實現(xiàn)帶GUI界面的猜數(shù)字游戲

讓UIManager爬取系統(tǒng)窗口樣式

try {
  UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
  e.printStackTrace();
}

Java中怎么實現(xiàn)帶GUI界面的猜數(shù)字游戲

新建一個int類型的變量存儲隨機數(shù)

int secret = r.nextInt(32) + 1;

寫入主程序

JOptionPane.showMessageDialog(null, "電腦隨機生成了一個1~32之間的數(shù),請猜出這個數(shù)", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE);
String number2 = (String) JOptionPane.showInputDialog(null, "請輸入想猜的數(shù):", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE, null, null, "");
int number = Integer.parseInt(number2);
while (number != secret) {
  if (number > secret) {
    JOptionPane.showMessageDialog(null, "你猜的數(shù)大了,請繼續(xù)猜", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE);
    number2 = (String) JOptionPane.showInputDialog(null, "請輸入想猜的數(shù):", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE, null, null, "");
    number = Integer.parseInt(number2);
  } else {
    JOptionPane.showMessageDialog(null, "你猜的數(shù)小了,請繼續(xù)猜", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE);
    number2 = (String) JOptionPane.showInputDialog(null, "請輸入想猜的數(shù):", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE, null, null, "");
    number = Integer.parseInt(number2);
  }
}
JOptionPane.showMessageDialog(null, "恭喜你,你猜對了,電腦生成的隨機數(shù)是" + secret, "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE);

Java中怎么實現(xiàn)帶GUI界面的猜數(shù)字游戲

全部代碼

package com.demo05;

import java.util.*;
import javax.swing.*;

public class MathDemo03 {
  public static void main(String[] args) {
    Scanner in = new Scanner(System.in);
    Random r = new Random();
    int secret = r.nextInt(32) + 1;
    try {
      UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } catch (Exception e) {
      e.printStackTrace();
    }
    JOptionPane.showMessageDialog(null, "電腦隨機生成了一個1~32之間的數(shù),請猜出這個數(shù)", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE);
    String number2 = (String) JOptionPane.showInputDialog(null, "請輸入想猜的數(shù):", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE, null, null, "");
    int number = Integer.parseInt(number2);
    while (number != secret) {
      if (number > secret) {
        JOptionPane.showMessageDialog(null, "你猜的數(shù)大了,請繼續(xù)猜", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE);
        number2 = (String) JOptionPane.showInputDialog(null, "請輸入想猜的數(shù):", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE, null, null, "");
        number = Integer.parseInt(number2);
      } else {
        JOptionPane.showMessageDialog(null, "你猜的數(shù)小了,請繼續(xù)猜", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE);
        number2 = (String) JOptionPane.showInputDialog(null, "請輸入想猜的數(shù):", "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE, null, null, "");
        number = Integer.parseInt(number2);
      }
    }
    JOptionPane.showMessageDialog(null, "恭喜你,你猜對了,電腦生成的隨機數(shù)是" + secret, "猜數(shù)字游戲", JOptionPane.PLAIN_MESSAGE);
  }
}

以上是“Java中怎么實現(xiàn)帶GUI界面的猜數(shù)字游戲”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI