Java的带GUI界面猜数字游戏的实现示例

网友投稿 221 2022-12-17


Java的带GUI界面猜数字游戏的实现示例

先导包

import java.util.*;

import javax.swing.*;

再写主方法

public static void main(String[] args) {

}

新声明一个Scanner和随机数

public static void main(String[] args) {

Scanner in = new Scanner(System.in);

Random r = new Random();

}

让UIManager爬取系统窗口样式

try {

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());

} catch (Exception e) {

e.printStackTrace();

}

新建一个int类型的变量存储随机数

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

写入主程序

JOptionPane.showMessageDialog(null, "电脑随机生成了一个1~32之间的数,请猜出这个数", "猜数字游戏", JOptionPane.PLAIN_MESSAGE);

String number2 = (StCNKFuring) JOptionPane.showInputDialog(null, "请输入想猜的数:", "猜数字游戏", JOptionPane.PLAIN_MESSAGE, null, null, "");

int number = Integer.parseInt(number2);

while (number != secret) {

if (number > secret) {

JOptionPane.showMessageDialog(null, "你猜的数大了,请继续猜", "猜数字游戏", JOptionPane.PLAIN_MESSAGE);

number2 = (Strinhttp://g) JOptionPane.showInputDialog(null, "请输入想猜的数:", "猜数字游戏", JOptionPane.PLAIN_MESSAGE, null, null, "");

number = Integer.parseInt(number2);

} else {

JOptionPane.showMessageDialog(null, "你猜的数小了,请继续猜", "猜数字游戏", JOptionPane.PLAIN_MESSAGE);

number2 = (String) JOptionPane.showInputDialog(null, "请输入想猜的数:", "猜数字游戏", JOptionPane.PLAIN_MESSAGE, null, null, "");

number = Integer.parseInt(number2);

}

}

JOptionPane.showMessageDialog(null, "恭喜你,你猜对了,电脑生成的随机数是" + secret, "猜数字游戏", JOptionPane.PLAIN_MESSAGE);

全部代码

package http://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之间的数,请猜出这个数", "猜数字游戏", JOptionPane.PLAIN_MESSAGE);

String number2 = (String) JOptionPane.showInputDialog(null, "请输入想猜的数:", "猜数字游戏", JOptionPane.PLAIN_MESSAGE, null, null, "");

int number = Integer.parseInt(number2);

while (number != secret) {

if (number > sCNKFuecret) {

JOptionPane.showMessageDialog(null, "你猜的数大了,请继续猜", "猜数字游戏", JOptionPane.PLAIN_MESSAGE);

number2 = (String) JOptionPane.showInputDialog(null, "请输入想猜的数:", "猜数字游戏", JOptionPane.PLAIN_MESSAGE, null, null, "");

number = Integer.parseInt(number2);

} else {

JOptionPane.showMessageDialog(null, "你猜的数小了,请继续猜", "猜数字游戏", JOptionPane.PLAIN_MESSAGE);

number2 = (String) JOptionPane.showInputDialog(null, "请输入想猜的数:", "猜数字游戏", JOptionPane.PLAIN_MESSAGE, null, null, "");

number = Integer.parseInt(number2);

}

}

JOptionPane.showMessageDialog(null, "恭喜你,你猜对了,电脑生成的随机数是" + secret, "猜数字游戏", JOptionPane.PLAIN_MESSAGE);

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:基于java socket实现 聊天小程序
下一篇:Java 在Excel单元格中应用一种/多种字体样式(实例代码)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~