怎么样做一个JAVA程序:单击按钮,在文本框产生一个200到400 的随机...
发布网友
发布时间:2024-09-30 12:05
我来回答
共3个回答
热心网友
时间:2024-10-26 07:58
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class test extends JFrame {
private JButton button1 = null;
private JTextField edit1 = null;
private String s = null;
public test()
{
super("Frame");
button1 = new JButton("Ramdom");
button1.addActionListener( new ActionListener() {
public void actionPerformed(ActionEvent e)
{
s = String.valueOf( Math.round( (Math.random()*1000 ) % 200) + 200 );
edit1.setText( s );
}
});
this.getContentPane().add("South", button1);
edit1 = new JTextField("");
this.getContentPane().add("North", edit1);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(120, 80);
this.setVisible(true);
}
public static void main(String[] args) { new test(); }
}
热心网友
时间:2024-10-26 08:01
一下只写方法,在窗体中,只需要调用这个方法即可~
import java.util.*;
public int getRandom(){
int i = 0;
while(i >=200 || i<=400){
i = nextInt(400);
}
return i;
}
热心网友
时间:2024-10-26 08:03
这样有点问题~
在给 i 赋处值的时候,应该是给200才对~不好意思~没有考虑清楚~