Java的带GUI界面猜数字游戏的实现示例
先导包
importjava.util.*; importjavax.swing.*;
再写主方法
publicstaticvoidmain(String[]args){
}
新声明一个Scanner和随机数
publicstaticvoidmain(String[]args){
	Scannerin=newScanner(System.in);
	Randomr=newRandom();
}
让UIManager爬取系统窗口样式
try{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}catch(Exceptione){
e.printStackTrace();
}
新建一个int类型的变量存储随机数
intsecret=r.nextInt(32)+1;
写入主程序
JOptionPane.showMessageDialog(null,"电脑随机生成了一个1~32之间的数,请猜出这个数","猜数字游戏",JOptionPane.PLAIN_MESSAGE);
Stringnumber2=(String)JOptionPane.showInputDialog(null,"请输入想猜的数:","猜数字游戏",JOptionPane.PLAIN_MESSAGE,null,null,"");
intnumber=Integer.parseInt(number2);
while(number!=secret){
if(number>secret){
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);
packagecom.demo05;
importjava.util.*;
importjavax.swing.*;
publicclassMathDemo03{
publicstaticvoidmain(String[]args){
Scannerin=newScanner(System.in);
Randomr=newRandom();
intsecret=r.nextInt(32)+1;
try{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}catch(Exceptione){
e.printStackTrace();
}
JOptionPane.showMessageDialog(null,"电脑随机生成了一个1~32之间的数,请猜出这个数","猜数字游戏",JOptionPane.PLAIN_MESSAGE);
Stringnumber2=(String)JOptionPane.showInputDialog(null,"请输入想猜的数:","猜数字游戏",JOptionPane.PLAIN_MESSAGE,null,null,"");
intnumber=Integer.parseInt(number2);
while(number!=secret){
if(number>secret){
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);
}
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。
