java猜数游戏有次数限制_求Java编程个猜数字游戏!任意输入个数根据提示大了或小了直到选对...

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

哈哈

哥们刚好编了个

import java.awt.*;

import java.awt.event.*;

import javax.swing.*;

import java.util.*;

public class guessNumber extends JFrame{

private Container container;

private JTextArea textArea;

private JLabel showArea;

private JButton show;

private JTextField cinGuess,outResult;

private GridLayout gridLayout;

private JPanel panel;

public guessNumber(){

super("猜数程序");

container=getContentPane();

gridLayout=new GridLayout(4,1);

container.setLayout(gridLayout);

textArea=new JTextArea("我有一个在0-1000范围内的数字,\n你能猜出来吗?请输你猜的数字");

textArea.setEditable(false);

container.add(textArea);

//设置panel

panel=new JPanel();

panel.setBackground(Color.yellow);

panel.setLayout(new FlowLayout());

showArea=new JLabel("请你输入你猜的数字:");

panel.add(showArea);

//加输入区域

cinGuess=new JTextField(10);

panel.add(cinGuess);

container.add(panel);

//container.add(cinGuess);

outResult=new JTextField();

outResult.setEditable(false);

container.add(outResult);

show=new JButton("重新开始");

container.add(show);

//添加监听器

show.addActionListener(

new ActionListener(){

public void actionPerformed(ActionEvent e){

int dataRandom=new Random().nextInt(1001);

String outString=new String();

outString="这个数字是"+String.valueOf(dataRandom);

if(cinGuess.getText()==outString)

{

outString+=" 恭喜你,你猜对了";

outResult.setBackground(Color.blue);

}

else

{

outString+=" 对不起,你猜错了";

outResult.setBackground(Color.red);

}

outResult.setText(outString);

outResult.setText(outString);

}

}

);

setSize(300,400);

setVisible(true);

}//end structor

public static void main(String args[]){

guessNumber application=new guessNumber();

application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值