欢迎来到皮皮网网首页

【acars系统源码】【lua框架生成源码】【源码编程初步教学】java餐厅源码_java餐厅管理系统源码

来源:明星97捕鱼游戏源码 时间:2024-11-24 14:11:32

1.各位大虾看看这个JAVA程序主类!!!!!
2.java课程设计源代码(急!餐厅餐厅!源码源码!管理acars系统源码!系统)
3.java小程序源代码,餐厅餐厅lua框架生成源码简单点的源码源码源码编程初步教学,100多行,管理谁有啊

java餐厅源码_java餐厅管理系统源码

各位大虾看看这个JAVA程序主类!!!!!

       é¦–先,既然有多态了, switch在这里完全可以不需要。

       å…¶æ¬¡è¦çœ‹ä½ Actualpayment方法是怎么实现的,输入的id和价格是怎么关联的。

       op[0]= new ordinary(0);

       op[1]= new vip(0);

       æž„造的时候传入的参数就是total,其后又没有其他方法改变这个值,所以total一直是0。后面取totalPayment什么的时候就只能是0了。

java课程设计源代码(急!系统!餐厅餐厅!源码源码!管理)

       import java.awt.Color;

       import java.awt.Font;

       import java.awt.event.ActionEvent;

       import java.awt.event.ActionListener;

       import javax.swing.JButton;

       import javax.swing.JFrame;

       import javax.swing.JLabel;

       import javax.swing.JOptionPane;

       import javax.swing.SwingConstants;

       import javax.swing.border.LineBorder;

       public class game extends JFrame {

        private JLabel label_2;

        private int number;

        private int sum;

        final JLabel label = new JLabel();

        final JLabel label_1 = new JLabel();

        public static void main(String[] args) {

        new game();

        }

        public game() {

        super("点?!系统");

        getContentPane().setLayout(null);

        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        final JButton button = new JButton();

        button.addActionListener(new ActionListener() {

        public void actionPerformed(final ActionEvent arg0) {

        onClick();

        }

        });

        button.setText("出牌");

        button.setBounds(,餐厅餐厅610页网页源码 , , );

        getContentPane().add(button);

        label.setBorder(new LineBorder(Color.black, 1, false));

        label.setHorizontalAlignment(SwingConstants.CENTER);

        label.setFont(new Font("", Font.BOLD, ));

        label.setText("背面");

        label.setBounds(, , , );

        getContentPane().add(label);

        label_1.setText("你已经拥有的牌:");

        label_1.setBounds(, , , );

        getContentPane().add(label_1);

        this.setBounds(, , , );

        this.setVisible(true);

        getContentPane().add(getLabel_2());

        }

        public int randNumber() {

        try {

        Thread.sleep();

        } catch (InterruptedException e) {

        e.printStackTrace();

        }

        return (int) (Math.random() * + 1);

        }

        public void onClick() {

        number = this.randNumber();

        this.sum += number;

        label.setText("" + number);

        String strTemp = this.label_1.getText();

        strTemp += "" + number + " ";

        label_1.setText(strTemp);

        String temp = "合计:" + sum;

        label_2.setText(temp);

        isWin();

        }

        public void isWin() {

        if (sum > ) {

        JOptionPane.showMessageDialog(this, "你输了");

        clear();

        return;

        } else if (sum == ) {

        JOptionPane.showMessageDialog(this, "你赢了");

        clear();

        return;

        } else {

        int i = JOptionPane.showOptionDialog(this, "是否继续?", "提示",

        JOptionPane.OK_CANCEL_OPTION,

        JOptionPane.INFORMATION_MESSAGE, null, null, null);

        if (i == JOptionPane.OK_OPTION) {

        onClick();

        } else

        return;

        }

        }

        private void clear() {

        label_2.setText("合计:");

        sum = 0;

        number = 0;

        label_1.setText("你已经拥有的牌:");

        }

        /

**

        * @return

        */

        protected JLabel getLabel_2() {

        if (label_2 == null) {

        label_2 = new JLabel();

        label_2.setText("合计:");

        label_2.setBounds(, , , );

        }

        return label_2;

        }

       }

       真好无聊中。。源码源码

java小程序源代码,管理元气魔盒app源码简单点的,多行,谁有啊

       // My car shop.java

       import java.awt.*;

       import java.awt.event.*;

       import javax.swing.*;

       import javax.swing.border.*;

       public class carshop extends JFrame

       {

        // JPanel to hold all pictures

        private JPanel windowJPanel;

        private String[] cars = { "","阿斯顿马丁", "美洲虎", "凯迪拉克",

        "罗孚", "劳斯莱斯","别克"};

        private int[] jiage = { 0,, , ,

        , , };

        // JLabels for first snack shown

        private JLabel oneJLabel;

        private JLabel oneIconJLabel;

        // JLabels for second snack shown

        private JLabel twoJLabel;

        private JLabel twoIconJLabel;

        // JLabels for third snack shown

        private JLabel threeJLabel;

        private JLabel threeIconJLabel;

        // JLabels for fourth snack shown

        private JLabel fourJLabel;

        private JLabel fourIconJLabel;

        // JLabels for fifth snack shown

        private JLabel fiveJLabel;

        private JLabel fiveIconJLabel;

        // JLabels for sixth snack shown

        private JLabel sixJLabel;

        private JLabel sixIconJLabel;

       // JTextField for displaying snack price

        private JTextArea displayJTextArea;

        // JLabel and JTextField for user input

        private JLabel inputJLabel;

        private JComboBox selectCountryJComboBox;

        private JLabel inputJLabel2;

        private JTextField inputJTextField2;

        // JButton to enter user input

        private JButton enterJButton;

        //JButton to clear the components

        private JButton clearJButton;

        // no-argument constructor

        public carshop()

        {

        createUserInterface();

        }

        // create and position GUI components; register event handlers

        private void createUserInterface()

        {

        // get content pane for attaching GUI components

        Container contentPane = getContentPane();

        // enable explicit positioning of GUI components

        contentPane.setLayout( null );

        // set up windowJPanel

        windowJPanel = new JPanel();

        windowJPanel.setBounds( , , , );

        windowJPanel.setBorder( new LineBorder( Color.BLACK ) );

        windowJPanel.setLayout( null );

        contentPane.add( windowJPanel );

        // set up oneIconJLabel

        oneIconJLabel = new JLabel();

        oneIconJLabel.setBounds( , , , );

        oneIconJLabel.setIcon( new ImageIcon( "images/阿斯顿马丁.jpg" ) );

        windowJPanel.add( oneIconJLabel );

        // set up oneJLabel

        oneJLabel = new JLabel();

        oneJLabel.setBounds( , , , );

        oneJLabel.setText( "阿斯顿马丁" );

        oneJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( oneJLabel );

        // set up twoIconJLabel

        twoIconJLabel = new JLabel();

        twoIconJLabel.setBounds( , , , );

        twoIconJLabel.setIcon( new ImageIcon( "images/美洲虎.jpg" ) );

        windowJPanel.add( twoIconJLabel );

        // set up twoJLabel

        twoJLabel = new JLabel();

        twoJLabel.setBounds( , , , );

        twoJLabel.setText( "美洲虎" );

        twoJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( twoJLabel );

        // set up threeIconJLabel

        threeIconJLabel = new JLabel();

        threeIconJLabel.setBounds( , , , );

        threeIconJLabel.setIcon( new ImageIcon(

        "images/凯迪拉克.jpg" ) );

        windowJPanel.add( threeIconJLabel );

        // set up threeJLabel

        threeJLabel = new JLabel();

        threeJLabel.setBounds( , , , );

        threeJLabel.setText( "凯迪拉克" );

        threeJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( threeJLabel );

        // set up fourIconJLabel

        fourIconJLabel = new JLabel();

        fourIconJLabel.setBounds( , , , );

        fourIconJLabel.setIcon( new ImageIcon( "images/罗孚.jpg" ) );

        windowJPanel.add( fourIconJLabel );

        // set up fourJLabel

        fourJLabel = new JLabel();

        fourJLabel.setBounds( , , , );

        fourJLabel.setText( "罗孚" );

        fourJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( fourJLabel );

        // set up fiveIconJLabel

        fiveIconJLabel = new JLabel();

        fiveIconJLabel.setBounds( , , , );

        fiveIconJLabel.setIcon( new ImageIcon(

        "images/劳斯莱斯.jpg" ) );

        windowJPanel.add( fiveIconJLabel );

        // set up fiveJLabel

        fiveJLabel = new JLabel();

        fiveJLabel.setBounds( , , , );

        fiveJLabel.setText( "劳斯莱斯" );

        fiveJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( fiveJLabel );

        // set up sixIconJLabel

        sixIconJLabel = new JLabel();

        sixIconJLabel.setBounds( , , , );

        sixIconJLabel.setIcon( new ImageIcon( "images/别克.jpg" ) );

        windowJPanel.add( sixIconJLabel );

        // set up sixJLabel

        sixJLabel = new JLabel();

        sixJLabel.setBounds( , , , );

        sixJLabel.setText( "别克" );

        sixJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( sixJLabel );

       // set up enterJButton

        enterJButton = new JButton();

        enterJButton.setBounds( , , , );

        enterJButton.setText( "Enter" );

        contentPane.add( enterJButton );

        enterJButton.addActionListener(

        new ActionListener() // anonymous inner class

        {

        // event handler called when enterJButton is clicked

        public void actionPerformed( ActionEvent event )

        {

        enterJButtonActionPerformed( event );

        }

        } // end anonymous inner class

        ); // end call to addActionListener

       // set up clearJButton

        clearJButton = new JButton();

        clearJButton.setBounds( , , , );

        clearJButton.setText( "Clear" );

        contentPane.add( clearJButton );

        // set up inputJLabel

        inputJLabel = new JLabel();

        inputJLabel.setBounds( , , , );

        inputJLabel.setText( "Please make selection:" );

        contentPane.add( inputJLabel );

        selectCountryJComboBox = new JComboBox( cars );

        selectCountryJComboBox.setBounds( , , , );

        selectCountryJComboBox.setMaximumRowCount( 3 );

        contentPane.add( selectCountryJComboBox );

        // set up inputJTextField

       inputJLabel2 = new JLabel();

        inputJLabel2.setBounds( , , , );

        inputJLabel2.setText( "Input the Numble:" );

        contentPane.add( inputJLabel2 );

        // set up inputJTextField

        inputJTextField2 = new JTextField();

        inputJTextField2.setBounds( , , , );

        inputJTextField2.setHorizontalAlignment( JTextField.RIGHT );

        contentPane.add( inputJTextField2 );

        clearJButton.addActionListener(

        new ActionListener() // anonymous inner class

        {

        // event handler called when clearJButton is clicked

        public void actionPerformed( ActionEvent event )

        {

        clearJButtonActionPerformed( event );

        }

        } // end anonymous inner class

        );

        // set up displayJTextField

        displayJTextArea = new JTextArea();

        displayJTextArea.setBounds( , ,, );

        displayJTextArea.setEditable( false );

        contentPane.add( displayJTextArea );

        // set properties of application's window

        setTitle( "My car Shop" ); // set title bar string

        setSize( , ); // set window size

        setVisible( true ); // display window

        } // end method createUserInterface

        private void clearJButtonActionPerformed( ActionEvent event )

        {

        // clear the JTextFields

        inputJTextField2.setText( "" );

        displayJTextArea.setText("");

        } // end method clearJButtonActionPerformed

        private void enterJButtonActionPerformed( ActionEvent event )

        {

        double z;

        double c;

        int x;

        int y;

        x=selectCountryJComboBox.getSelectedIndex();

        y=Integer.parseInt(inputJTextField2.getText());

        double discountRate;

        int amount = Integer.parseInt( inputJTextField2.getText());

        switch (amount/5)

        {

        case 0:

        discountRate = 0;

        break;

        case 1:

        discountRate = 1;

        break;

        case 2:

        discountRate = 2;

        break;

        case 3:

        discountRate = 3;

        break;

        default:

        discountRate = 4;

        } // end switch statement

        c=1-discountRate/;

        z=jiage[x]*y*c;

        displayJTextArea.append("你选择的是:"+cars[x]+";"+

       "它的单价是:"+jiage[x]+";" +"你购买该产品的数量是:"+y+"," +"\n"+"该数量的折扣是:"

        +discountRate + " %"+";"+"本次消费的总价格是:"+z+"元"+"!"+"\n");

        }

        public static void main( String args[] )

        {

        carshop application = new carshop();

        application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );

        } // end method main

       } // end class carshop