java中n皇后问题,求助,N皇后问题。。

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

/*

* To change this template, choose Tools | Templates

* and open the template in the editor.

*/

package Tank;

import java.awt.*;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.ItemEvent;

import java.awt.event.ItemListener;

import javax.swing.*;

public class MainJFrame implements ActionListener,ItemListener{

JFrame frame;

MusicPlay player;

Container contentpane;

Background back;

JPanel panel;

JButton button,button1,button2 ;

JComboBox jbox,jcox;

String str[]={"4","5","6","7","8","9","10"};

String stm[]={"1.mp3","2.mp3"};

String ss;

static int n;

static int num=0;

public MainJFrame(){

frame=new JFrame("测试");

contentpane=frame.getContentPane();

panel=new JPanel();

button=new JButton("棋盘");

button1=new JButton("音乐开始");

button2=new JButton("音乐停止");

jcox=new JComboBox(str);

jbox=new JComboBox(stm);

back=new Background();

panel.add(button);

panel.add(button1);

panel.add(button2);

panel.add(jcox);

panel.add(jbox);

contentpane.add(panel,"North");

panel.setBackground(Color.gray);

contentpane.add(back,"Center");

button.addActionListener(this);

button1.addActionListener(this);

button2.addActionListener(this);

jcox.addItemListener(this);

jbox.addItemListener(this);

inti();

}

public void inti(){

frame.setBounds(100,100,700,800);

frame.setVisible(true);

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

public static void main(String[] args) {

new MainJFrame();

}

public void actionPerformed(ActionEvent e) {

if(e.getSource()==button)

{

back.repaint();

}

if(e.getSource()==button1)

{

player=new MusicPlay();

player.play.start();

}

if(e.getSource()==button2){

player.play.stop();

}

}

public void itemStateChanged(ItemEvent e) {

if(e.getSource()==jcox){

n=jcox.getSelectedIndex()+4;

}

if(e.getSource()==jbox){

num=jbox.getSelectedIndex();

}

}

}

//

这是主类。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值